gent_styleguide 7.0.1 → 7.0.2
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/build/css/main.css +1 -1
- package/build/styleguide/fonts/gent-icons-v7.eot +0 -0
- package/build/styleguide/fonts/gent-icons-v7.ttf +0 -0
- package/build/styleguide/fonts/gent-icons-v7.woff +0 -0
- package/build/styleguide/fonts/gent-icons-v7.woff2 +0 -0
- package/build/styleguide/sass/21-atoms/heading/_heading.scss +1 -1
- package/build/styleguide/sass/21-atoms/heading/css/_overview-title.scss +1 -1
- package/build/styleguide/sass/41-organisms/filter/_filter.scss +8 -3
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -73,17 +73,22 @@
|
|
|
73
73
|
// On mobile the filter-section is moved to the body root because it is converted to a modal.
|
|
74
74
|
// This means it's no longer a child of .filter.
|
|
75
75
|
.sidebar.filter-section {
|
|
76
|
-
visibility: hidden;
|
|
77
|
-
|
|
78
76
|
@include desktop {
|
|
79
77
|
position: static;
|
|
80
78
|
height: auto;
|
|
81
79
|
box-shadow: none;
|
|
82
80
|
overflow: visible;
|
|
83
|
-
visibility: visible;
|
|
84
81
|
z-index: auto;
|
|
85
82
|
}
|
|
86
83
|
|
|
84
|
+
main & {
|
|
85
|
+
visibility: hidden;
|
|
86
|
+
|
|
87
|
+
@include desktop {
|
|
88
|
+
visibility: visible;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
87
92
|
&.visible {
|
|
88
93
|
@include breakpoint(max-width $bp-desktop) {
|
|
89
94
|
padding: 0;
|