@ulu/frontend 0.0.16 → 0.0.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Change Log
2
2
 
3
+ ## Version 0.0.17
4
+
5
+ ### SCSS
6
+
7
+ - Add !important to all utilities meant to display none, since they should always override
8
+
3
9
  ## Version 0.0.10
4
10
 
5
11
  ### JS
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ulu/frontend",
3
- "version": "0.0.16",
3
+ "version": "0.0.17",
4
4
  "description": "Theming library",
5
5
  "browser": "js/index.js",
6
6
  "main": "index.js",
@@ -54,19 +54,19 @@
54
54
  }
55
55
  .hidden,
56
56
  .display-none {
57
- display: none;
57
+ display: none !important;
58
58
  }
59
59
 
60
60
  // Display none per breakpoint
61
61
  @each $name in map.keys(breakpoint.$sizes) {
62
62
  @include breakpoint.min($name) {
63
63
  .hidden-min-#{ $name } {
64
- display: none;
64
+ display: none !important;
65
65
  }
66
66
  }
67
67
  @include breakpoint.max($name) {
68
68
  .hidden-max-#{ $name } {
69
- display: none;
69
+ display: none !important;
70
70
  }
71
71
  }
72
72
  }