oslo-red-cross-bootstrap-3-theme 1.7.0 → 1.8.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/_base.scss +8 -0
- package/_variables.scss +2 -2
- package/package.json +1 -1
package/_base.scss
CHANGED
|
@@ -166,6 +166,14 @@ h1 > .label {
|
|
|
166
166
|
cursor: pointer !important;
|
|
167
167
|
}
|
|
168
168
|
|
|
169
|
+
@media screen and (min-width: 1024px) {
|
|
170
|
+
.collapsable {
|
|
171
|
+
display: block !important;
|
|
172
|
+
visibility: visible !important;
|
|
173
|
+
height: auto !important;
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
|
|
169
177
|
@media (max-width: $screen-sm-min) {
|
|
170
178
|
.container {
|
|
171
179
|
margin-right: 0 !important;
|
package/_variables.scss
CHANGED
|
@@ -375,8 +375,8 @@ $container-xl: $container-extra-large-desktop !default;
|
|
|
375
375
|
$navbar-height: 80px !default;
|
|
376
376
|
$navbar-margin-bottom: 30px !default;
|
|
377
377
|
$navbar-border-radius: $border-radius-base !default;
|
|
378
|
-
$navbar-padding-horizontal: floor(($grid-gutter-width / 2)) !default;
|
|
379
|
-
$navbar-padding-vertical: (($navbar-height - $line-height-computed) / 2) !default;
|
|
378
|
+
$navbar-padding-horizontal: floor((calc($grid-gutter-width / 2))) !default;
|
|
379
|
+
$navbar-padding-vertical: calc(($navbar-height - $line-height-computed) / 2) !default;
|
|
380
380
|
$navbar-collapse-max-height: 340px !default;
|
|
381
381
|
|
|
382
382
|
$navbar-default-color: #000 !default;
|