@cooperco/cooper-component-library 0.1.61 → 0.1.63
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 +106 -4
- package/dist/cms/README.md +101 -31
- package/dist/cms/contentful/queries/README.md +112 -0
- package/dist/cms/queries/README.md +112 -0
- package/dist/lib/component-lib.js +1372 -1349
- package/dist/lib/component-lib.umd.cjs +16 -16
- package/dist/lib/css/main.css +17 -16
- package/dist/lib/style.css +1 -1
- package/dist/types/src/components/Accordion/Accordion.d.ts +1 -0
- package/dist/types/src/components/ContentModule/ContentModule.d.ts +1 -0
- package/package.json +3 -2
package/dist/lib/css/main.css
CHANGED
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
|
|
16
16
|
:root {
|
|
17
17
|
font-family: 'GT-Walsheim';
|
|
18
|
+
--clip-path-hero: ellipse(89% 115% at 99% 16%);
|
|
18
19
|
}
|
|
19
20
|
|
|
20
21
|
.font-bold {
|
|
@@ -164,7 +165,7 @@ ol {
|
|
|
164
165
|
}
|
|
165
166
|
|
|
166
167
|
@layer utilities {
|
|
167
|
-
|
|
168
|
+
.clip-mobile-hero {
|
|
168
169
|
clip-path: ellipse(150% 100% at 50% 0%);
|
|
169
170
|
}
|
|
170
171
|
|
|
@@ -173,26 +174,26 @@ ol {
|
|
|
173
174
|
}
|
|
174
175
|
}
|
|
175
176
|
|
|
176
|
-
|
|
177
|
+
@media (min-width: 768px) and (max-width: 1015px) {
|
|
177
178
|
.clip-hero {
|
|
178
|
-
clip-path:
|
|
179
|
+
clip-path: var(--clip-path-hero);
|
|
179
180
|
}
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
@media (min-width: 1016px) and (max-width: 1199px) {
|
|
183
184
|
.clip-hero {
|
|
184
|
-
clip-path:
|
|
185
|
+
clip-path: var(--clip-path-hero);
|
|
185
186
|
}
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
@media (min-width: 1200px) and (max-width: 1439px) {
|
|
189
190
|
.clip-hero {
|
|
190
|
-
clip-path:
|
|
191
|
+
clip-path: var(--clip-path-hero);
|
|
191
192
|
}
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
@media (min-width: 1440px) {
|
|
195
196
|
.clip-hero {
|
|
196
|
-
|
|
197
|
+
clip-path: var(--clip-path-hero);
|
|
197
198
|
}
|
|
198
|
-
|
|
199
|
+
}
|