@cooperco/cooper-component-library 0.1.65 → 0.1.67

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.
@@ -164,6 +164,46 @@ ol {
164
164
  transform: translateY(0);
165
165
  }
166
166
 
167
+ /* Apply bullet color to list markers */
168
+ .body-copy-with-lists ul,
169
+ .body-copy-with-lists ol {
170
+ list-style: none;
171
+ padding-left: 0;
172
+ }
173
+
174
+ .body-copy-with-lists ul li {
175
+ position: relative;
176
+ padding-left: 1.5em;
177
+ }
178
+
179
+ .body-copy-with-lists ul li::before {
180
+ content: '•';
181
+ color: var(--bullet-color);
182
+ font-size: 2em;
183
+ position: absolute;
184
+ left: 0;
185
+ line-height: 0.8;
186
+ }
187
+
188
+ .body-copy-with-lists ol li {
189
+ position: relative;
190
+ padding-left: 1.8em;
191
+ counter-increment: list-counter;
192
+ }
193
+
194
+ .body-copy-with-lists ol {
195
+ counter-reset: list-counter;
196
+ }
197
+
198
+ .body-copy-with-lists ol li::before {
199
+ content: counter(list-counter) '.';
200
+ color: var(--bullet-color);
201
+ font-size: 1.2em;
202
+ position: absolute;
203
+ left: 0;
204
+ font-weight: 600;
205
+ }
206
+
167
207
  @layer utilities {
168
208
  .clip-mobile-hero {
169
209
  clip-path: ellipse(150% 100% at 50% 0%);