@utahdts/utah-design-system-header 0.1.0
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/README.md +73 -0
- package/dist/style.css +1 -0
- package/dist/utah-design-system-header.es.js +2317 -0
- package/dist/utah-design-system-header.umd.js +124 -0
- package/package.json +41 -0
- package/src/css/_action-items.scss +44 -0
- package/src/css/_badge.scss +34 -0
- package/src/css/_citizen-experience.scss +13 -0
- package/src/css/_logos.scss +64 -0
- package/src/css/_popup.scss +1 -0
- package/src/css/_utah-header-wrapper.scss +21 -0
- package/src/css/_vertical-menu.scss +2 -0
- package/src/css/build/utah-design-system-header.css +973 -0
- package/src/css/index.scss +7 -0
- package/src/css/media-queries.css +25 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/* @media is never in scope for --variables, so this is the only way to solve this. :-( */
|
|
2
|
+
|
|
3
|
+
@media screen and (max-width: media-size__tablet-landscape__PLACEHOLDER) {
|
|
4
|
+
/* put your media query here for tablet landscape */
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
@media screen and (max-width: media-size__tablet-portrait__PLACEHOLDER) {
|
|
8
|
+
.utds-header {
|
|
9
|
+
height: 60px;
|
|
10
|
+
padding: var(--spacing-xs) var(--spacing);
|
|
11
|
+
}
|
|
12
|
+
.utds-title-wrapper {
|
|
13
|
+
font-size: var(--font-size-xl);
|
|
14
|
+
}
|
|
15
|
+
.utds-citizen-experience-wrapper {
|
|
16
|
+
display: none;
|
|
17
|
+
}
|
|
18
|
+
.utah-design-system .main-menu__nav {
|
|
19
|
+
display: none;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
@media screen and (max-width: media-size__mobile__PLACEHOLDER) {
|
|
24
|
+
/* put your media query here for mobile */
|
|
25
|
+
}
|