@crystallize/design-system 1.24.6 → 1.24.7
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/CHANGELOG.md +6 -0
- package/dist/index.css +6 -1
- package/package.json +1 -1
- package/src/collapsible/collapsible.css +1 -1
- package/src/tag/tag.css +6 -0
package/CHANGELOG.md
CHANGED
package/dist/index.css
CHANGED
|
@@ -1068,7 +1068,6 @@
|
|
|
1068
1068
|
}
|
|
1069
1069
|
.c-collapsible-trigger.arrow-right {
|
|
1070
1070
|
flex-direction: row-reverse;
|
|
1071
|
-
justify-content: flex-end;
|
|
1072
1071
|
}
|
|
1073
1072
|
.c-collapsible-arrow {
|
|
1074
1073
|
transition: 0.3s;
|
|
@@ -1851,6 +1850,9 @@
|
|
|
1851
1850
|
font-size: 0.75rem;
|
|
1852
1851
|
line-height: 1rem;
|
|
1853
1852
|
}
|
|
1853
|
+
.c-tag-xxs .c-tag__prepend {
|
|
1854
|
+
margin-left: -0.25rem;
|
|
1855
|
+
}
|
|
1854
1856
|
.c-tag-xs {
|
|
1855
1857
|
height: 1.5rem;
|
|
1856
1858
|
padding-left: 0.5rem;
|
|
@@ -1858,6 +1860,9 @@
|
|
|
1858
1860
|
font-size: 0.75rem;
|
|
1859
1861
|
line-height: 1rem;
|
|
1860
1862
|
}
|
|
1863
|
+
.c-tag-xs .c-tag__prepend {
|
|
1864
|
+
margin-left: -0.25rem;
|
|
1865
|
+
}
|
|
1861
1866
|
.c-tag-sm {
|
|
1862
1867
|
height: 2.25rem;
|
|
1863
1868
|
padding-left: 1rem;
|
package/package.json
CHANGED
package/src/tag/tag.css
CHANGED