@cooperco/cooper-component-library 0.1.84 → 0.1.85
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/dist/cms/0073-add-body-copy-to-tile-collection.cjs +22 -0
- package/dist/cms/0074-fix-accordion-start-open-widget.cjs +27 -0
- package/dist/cms/0075-make-content-module-headline-optional.cjs +10 -0
- package/dist/cms/README.md +31 -101
- package/dist/cms/contentful/migrations/scripts/0073-add-body-copy-to-tile-collection.cjs +22 -0
- package/dist/cms/contentful/migrations/scripts/0074-fix-accordion-start-open-widget.cjs +27 -0
- package/dist/cms/contentful/migrations/scripts/0075-make-content-module-headline-optional.cjs +10 -0
- package/dist/cms/contentful/queries/tileCollection.query.js +1 -0
- package/dist/cms/contentful/queries/tileCollection.query.ts +1 -0
- package/dist/cms/migrations/scripts/0073-add-body-copy-to-tile-collection.cjs +22 -0
- package/dist/cms/migrations/scripts/0074-fix-accordion-start-open-widget.cjs +27 -0
- package/dist/cms/migrations/scripts/0075-make-content-module-headline-optional.cjs +10 -0
- package/dist/cms/queries/tileCollection.query.ts +1 -0
- package/dist/cms/scripts/0073-add-body-copy-to-tile-collection.cjs +22 -0
- package/dist/cms/scripts/0074-fix-accordion-start-open-widget.cjs +27 -0
- package/dist/cms/scripts/0075-make-content-module-headline-optional.cjs +10 -0
- package/dist/cms/tileCollection.query.ts +1 -0
- package/dist/lib/component-lib.js +1945 -1889
- package/dist/lib/component-lib.umd.cjs +34 -34
- package/dist/lib/css/main.css +7 -1
- 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 +8 -0
- package/dist/types/src/components/Image/Image.d.ts +2 -0
- package/dist/types/src/components/Image/Image.vue.d.ts +1 -0
- package/dist/types/src/types.d.ts +1 -0
- package/package.json +1 -1
package/dist/lib/css/main.css
CHANGED
|
@@ -95,6 +95,11 @@ ol {
|
|
|
95
95
|
white-space: pre-line;
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
+
.content-module-body-copy strong,
|
|
99
|
+
.content-module-body-copy b {
|
|
100
|
+
color: var(--copy-accent-color);
|
|
101
|
+
}
|
|
102
|
+
|
|
98
103
|
.content-module-body-copy table {
|
|
99
104
|
width: 100%;
|
|
100
105
|
border-collapse: separate;
|
|
@@ -199,12 +204,13 @@ ol {
|
|
|
199
204
|
padding-left: 1rem;
|
|
200
205
|
}
|
|
201
206
|
|
|
202
|
-
@media (min-width:
|
|
207
|
+
@media (min-width: 1280px) {
|
|
203
208
|
.container-hero {
|
|
204
209
|
padding-left: 90px;
|
|
205
210
|
}
|
|
206
211
|
}
|
|
207
212
|
|
|
213
|
+
|
|
208
214
|
@media (min-width: 1024px) {
|
|
209
215
|
.container-hero-right {
|
|
210
216
|
padding-right: max(20px, calc((100% - 1024px) / 2));
|