@cooperco/cooper-component-library 0.1.61 → 0.1.62

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.
@@ -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
- .clip-mobile-hero {
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
- @media (min-width: 768px) and (max-width: 1015px) {
177
+ @media (min-width: 768px) and (max-width: 1015px) {
177
178
  .clip-hero {
178
- clip-path: circle(74.6% at 75% 51%);
179
+ clip-path: var(--clip-path-hero);
179
180
  }
180
- }
181
-
182
- @media (min-width: 1016px) and (max-width: 1199px) {
181
+ }
182
+
183
+ @media (min-width: 1016px) and (max-width: 1199px) {
183
184
  .clip-hero {
184
- clip-path: circle(74.6% at 75% 51%);
185
+ clip-path: var(--clip-path-hero);
185
186
  }
186
- }
187
-
188
- @media (min-width: 1200px) and (max-width: 1439px) {
187
+ }
188
+
189
+ @media (min-width: 1200px) and (max-width: 1439px) {
189
190
  .clip-hero {
190
- clip-path: circle(74.6% at 75% 51%);
191
+ clip-path: var(--clip-path-hero);
191
192
  }
192
- }
193
-
194
- @media (min-width: 1440px) {
193
+ }
194
+
195
+ @media (min-width: 1440px) {
195
196
  .clip-hero {
196
- clip-path: circle(74.6% at 75% 51%);
197
+ clip-path: var(--clip-path-hero);
197
198
  }
198
- }
199
+ }