@ilo-org/styles 0.1.12 → 0.1.13
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/components/index.css +610 -142
- package/build/css/components/index.css.map +1 -1
- package/build/css/index.css +610 -142
- package/build/css/index.css.map +1 -1
- package/build/css/monorepo.css +610 -142
- package/build/css/monorepo.css.map +1 -1
- package/build/minified/index.css +1 -1
- package/build/minified/index.css.map +1 -1
- package/build/minified/monorepo.css +1 -1
- package/build/minified/monorepo.css.map +1 -1
- package/package.json +4 -4
- package/scss/_mixins.scss +26 -0
- package/scss/components/_breadcrumb.scss +33 -0
- package/scss/components/_card.scss +303 -63
- package/scss/components/_hero.scss +81 -24
- package/scss/components/_list.scss +2 -16
- package/scss/components/_navigation.scss +2 -1
- package/scss/components/_pagination.scss +1 -1
|
@@ -59,27 +59,13 @@
|
|
|
59
59
|
|
|
60
60
|
&__title {
|
|
61
61
|
@include font-styles("headline-6");
|
|
62
|
-
|
|
63
|
-
"margin-bottom",
|
|
64
|
-
24px,
|
|
65
|
-
"headline-6",
|
|
66
|
-
"display",
|
|
67
|
-
"body-small",
|
|
68
|
-
"copy"
|
|
69
|
-
);
|
|
62
|
+
margin-bottom: px-to-rem(21px);
|
|
70
63
|
font-family: $fonts-display;
|
|
71
64
|
font-weight: 700;
|
|
72
65
|
|
|
73
66
|
@include breakpoint("medium") {
|
|
74
67
|
@include font-styles("headline-5");
|
|
75
|
-
|
|
76
|
-
"margin-bottom",
|
|
77
|
-
map-get($spacing, "ui-padding-xxl"),
|
|
78
|
-
"headline-5",
|
|
79
|
-
"display",
|
|
80
|
-
"base",
|
|
81
|
-
"copy"
|
|
82
|
-
);
|
|
68
|
+
margin-bottom: px-to-rem(27px);
|
|
83
69
|
}
|
|
84
70
|
}
|
|
85
71
|
|
|
@@ -240,6 +240,7 @@
|
|
|
240
240
|
|
|
241
241
|
@include breakpoint("large") {
|
|
242
242
|
background: $brand-ilo-dark-blue;
|
|
243
|
+
overflow: visible;
|
|
243
244
|
position: static;
|
|
244
245
|
transform: none;
|
|
245
246
|
}
|
|
@@ -918,9 +919,9 @@
|
|
|
918
919
|
}
|
|
919
920
|
}
|
|
920
921
|
|
|
921
|
-
|
|
922
922
|
.ilo--menu--open {
|
|
923
923
|
height: 100%;
|
|
924
|
+
padding-top: 85px;
|
|
924
925
|
overflow: hidden;
|
|
925
926
|
width: 100%;
|
|
926
927
|
}
|