sellmate-design-system-react 9.0.0-beta.37 → 9.0.0-beta.38
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/styles.css +16 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -861,6 +861,9 @@
|
|
|
861
861
|
.mr-\[8px\] {
|
|
862
862
|
margin-right: 8px;
|
|
863
863
|
}
|
|
864
|
+
.mr-sd-4 {
|
|
865
|
+
margin-right: var(--spacing-sd-4);
|
|
866
|
+
}
|
|
864
867
|
.mb-3 {
|
|
865
868
|
margin-bottom: calc(var(--spacing) * 3);
|
|
866
869
|
}
|
|
@@ -1568,6 +1571,9 @@
|
|
|
1568
1571
|
.list-none {
|
|
1569
1572
|
list-style-type: none;
|
|
1570
1573
|
}
|
|
1574
|
+
.grid-cols-1 {
|
|
1575
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
1576
|
+
}
|
|
1571
1577
|
.grid-cols-7 {
|
|
1572
1578
|
grid-template-columns: repeat(7, minmax(0, 1fr));
|
|
1573
1579
|
}
|
|
@@ -4940,6 +4946,11 @@
|
|
|
4940
4946
|
height: var(--spacing-sd-20);
|
|
4941
4947
|
}
|
|
4942
4948
|
}
|
|
4949
|
+
.md\:grid-cols-2 {
|
|
4950
|
+
@media (width >= 48rem) {
|
|
4951
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
4952
|
+
}
|
|
4953
|
+
}
|
|
4943
4954
|
.md\:p-4 {
|
|
4944
4955
|
@media (width >= 48rem) {
|
|
4945
4956
|
padding: calc(var(--spacing) * 4);
|
|
@@ -4989,6 +5000,11 @@
|
|
|
4989
5000
|
align-items: flex-start;
|
|
4990
5001
|
}
|
|
4991
5002
|
}
|
|
5003
|
+
.\32 xl\:grid-cols-4 {
|
|
5004
|
+
@media (width >= 96rem) {
|
|
5005
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
5006
|
+
}
|
|
5007
|
+
}
|
|
4992
5008
|
.\[\&_\.ProseMirror\]\:min-h-full {
|
|
4993
5009
|
& .ProseMirror {
|
|
4994
5010
|
min-height: 100%;
|