blue-web 1.6.0 → 1.6.1

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/dist/style.scss CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Blue Web v1.6.0 (https://bruegmann.github.io/blue-web)
2
+ * Blue Web v1.6.1 (https://bruegmann.github.io/blue-web)
3
3
  * Licensed under GNU General Public License v3.0 (https://github.com/bruegmann/blue-web/blob/master/LICENSE).
4
4
  */
5
5
 
@@ -16,14 +16,16 @@
16
16
  height: 100dvh;
17
17
  }
18
18
 
19
- @media (min-width: $sidebar-shrink-breakpoint) {
20
- .blue-grid-layout {
21
- grid-template-columns: $normal-size auto;
19
+ @if $sidebar-shrink {
20
+ @media (min-width: $sidebar-shrink-breakpoint) {
21
+ .blue-grid-layout {
22
+ grid-template-columns: $normal-size auto;
23
+ }
22
24
  }
23
25
  }
24
26
 
25
27
  @media (min-width: $sidebar-expanded-breakpoint) {
26
- .blue-grid-layout {
28
+ .blue-grid-layout.expandSidebar {
27
29
  grid-template-columns: var(--blue-sidebar-width) auto;
28
30
  }
29
31
  }
@@ -179,7 +179,7 @@
179
179
  overflow: hidden;
180
180
  }
181
181
 
182
- @if ($sidebar-shrink) {
182
+ @if $sidebar-shrink {
183
183
  @media (min-width: $sidebar-shrink-breakpoint) {
184
184
  @include blue-sidebar($normal-size);
185
185
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blue-web",
3
- "version": "1.6.0",
3
+ "version": "1.6.1",
4
4
  "description": "UI components built on top of Bootstrap 5",
5
5
  "license": "LGPL-3.0-or-later",
6
6
  "homepage": "https://bruegmann.github.io/blue-web/v1",