@ilo-org/styles 0.8.0 → 0.8.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/components/index.css +88 -76
- package/build/css/components/index.css.map +1 -1
- package/build/css/global.css +1 -1
- package/build/css/index.css +88 -76
- package/build/css/index.css.map +1 -1
- package/build/css/monorepo.css +88 -76
- 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/css/components/card.css +1 -1
- package/css/components/cardgroup.css +1 -1
- package/css/components/featurecard.css +1 -1
- package/css/global.css.map +1 -1
- package/css/index.css +1 -1
- package/css/index.css.map +1 -1
- package/css/monorepo.css +1 -1
- package/css/monorepo.css.map +1 -1
- package/package.json +1 -1
- package/scss/components/_card.scss +3 -0
- package/scss/components/_cardgroup.scss +5 -0
- package/scss/components/_featurecard.scss +5 -0
package/package.json
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
box-sizing: border-box;
|
|
11
11
|
position: relative;
|
|
12
|
+
background-color: map-get($color, "base", "neutrals", "white");
|
|
12
13
|
|
|
13
14
|
// Max width is set in the invididual card types unless fluid
|
|
14
15
|
max-width: var(--max-width);
|
|
@@ -85,6 +86,8 @@
|
|
|
85
86
|
}
|
|
86
87
|
|
|
87
88
|
&--wrapper {
|
|
89
|
+
max-width: var(--max-width);
|
|
90
|
+
|
|
88
91
|
&:hover,
|
|
89
92
|
&:focus,
|
|
90
93
|
&:focus-within {
|
|
@@ -168,6 +168,10 @@
|
|
|
168
168
|
width: 100%;
|
|
169
169
|
z-index: -1;
|
|
170
170
|
}
|
|
171
|
+
|
|
172
|
+
img {
|
|
173
|
+
object-fit: cover;
|
|
174
|
+
}
|
|
171
175
|
}
|
|
172
176
|
|
|
173
177
|
#{$self}--content {
|
|
@@ -195,6 +199,7 @@
|
|
|
195
199
|
);
|
|
196
200
|
font-family: $fonts-display;
|
|
197
201
|
font-weight: 700;
|
|
202
|
+
flex: 1;
|
|
198
203
|
}
|
|
199
204
|
|
|
200
205
|
#{$self}--eyebrow {
|