@nauedu/frontend-component-header 20.1.1 → 20.1.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/dist/index.scss +7 -1
- package/package.json +1 -1
- package/dist/learning-header/_header.scss +0 -10
package/dist/index.scss
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
// Breakpoints below are static px values on purpose. This package supports
|
|
2
|
+
// Paragon ">= 22.0.0 < 24.0.0", and the two majors expose breakpoints
|
|
3
|
+
// differently: 22 only has the Bootstrap SCSS variables, 23 moved to design
|
|
4
|
+
// tokens / @custom-media. Hard-coding keeps this stylesheet self-contained and
|
|
5
|
+
// working across the whole peer range. Values match Paragon's sm/md breakpoints.
|
|
1
6
|
$spacer: 1rem;
|
|
2
7
|
$blue: #007db8;
|
|
3
8
|
$white: #fff;
|
|
@@ -47,7 +52,8 @@ $rounded-pill: 50rem !default;
|
|
|
47
52
|
.user-dropdown {
|
|
48
53
|
.btn {
|
|
49
54
|
height: 3rem;
|
|
50
|
-
|
|
55
|
+
// Below "sm".
|
|
56
|
+
@media (max-width: 576px) {
|
|
51
57
|
padding: 0 0.5rem;
|
|
52
58
|
}
|
|
53
59
|
}
|
package/package.json
CHANGED