sellmate-design-system-react 0.8.4 → 0.9.0
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/components/SGnb/SGnb.cjs +58 -16
- package/dist/components/SGnb/SGnb.cjs.map +1 -1
- package/dist/components/SGnb/SGnb.d.ts +15 -0
- package/dist/components/SGnb/SGnb.js +58 -16
- package/dist/components/SGnb/SGnb.js.map +1 -1
- package/dist/index.cjs +54 -16
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +54 -16
- package/dist/index.js.map +1 -1
- package/dist/styles.css +31 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -763,6 +763,9 @@
|
|
|
763
763
|
.m-0 {
|
|
764
764
|
margin: 0;
|
|
765
765
|
}
|
|
766
|
+
.mx-3 {
|
|
767
|
+
margin-inline: calc(var(--spacing) * 3);
|
|
768
|
+
}
|
|
766
769
|
.-mt-px {
|
|
767
770
|
margin-top: -1px;
|
|
768
771
|
}
|
|
@@ -799,6 +802,9 @@
|
|
|
799
802
|
.mb-8 {
|
|
800
803
|
margin-bottom: var(--spacing-8);
|
|
801
804
|
}
|
|
805
|
+
.mb-\[24px\] {
|
|
806
|
+
margin-bottom: 24px;
|
|
807
|
+
}
|
|
802
808
|
.-ml-px {
|
|
803
809
|
margin-left: -1px;
|
|
804
810
|
}
|
|
@@ -838,6 +844,12 @@
|
|
|
838
844
|
.table {
|
|
839
845
|
display: table;
|
|
840
846
|
}
|
|
847
|
+
.h-8 {
|
|
848
|
+
height: var(--spacing-8);
|
|
849
|
+
}
|
|
850
|
+
.h-11 {
|
|
851
|
+
height: calc(var(--spacing) * 11);
|
|
852
|
+
}
|
|
841
853
|
.h-48 {
|
|
842
854
|
height: var(--spacing-48);
|
|
843
855
|
}
|
|
@@ -955,6 +967,12 @@
|
|
|
955
967
|
.min-h-screen {
|
|
956
968
|
min-height: 100vh;
|
|
957
969
|
}
|
|
970
|
+
.w-8 {
|
|
971
|
+
width: var(--spacing-8);
|
|
972
|
+
}
|
|
973
|
+
.w-11 {
|
|
974
|
+
width: calc(var(--spacing) * 11);
|
|
975
|
+
}
|
|
958
976
|
.w-\[4px\] {
|
|
959
977
|
width: 4px;
|
|
960
978
|
}
|
|
@@ -1746,6 +1764,9 @@
|
|
|
1746
1764
|
.bg-grey-05 {
|
|
1747
1765
|
background-color: var(--color-grey-05);
|
|
1748
1766
|
}
|
|
1767
|
+
.bg-grey-10 {
|
|
1768
|
+
background-color: var(--color-grey-10);
|
|
1769
|
+
}
|
|
1749
1770
|
.bg-grey-90 {
|
|
1750
1771
|
background-color: var(--color-grey-90);
|
|
1751
1772
|
}
|
|
@@ -2274,6 +2295,9 @@
|
|
|
2274
2295
|
.text-grey-55 {
|
|
2275
2296
|
color: var(--color-grey-55);
|
|
2276
2297
|
}
|
|
2298
|
+
.text-grey-65 {
|
|
2299
|
+
color: var(--color-grey-65);
|
|
2300
|
+
}
|
|
2277
2301
|
.text-grey-80 {
|
|
2278
2302
|
color: var(--color-grey-80);
|
|
2279
2303
|
}
|
|
@@ -2695,6 +2719,13 @@
|
|
|
2695
2719
|
}
|
|
2696
2720
|
}
|
|
2697
2721
|
}
|
|
2722
|
+
.hover\:bg-grey-20 {
|
|
2723
|
+
&:hover {
|
|
2724
|
+
@media (hover: hover) {
|
|
2725
|
+
background-color: var(--color-grey-20);
|
|
2726
|
+
}
|
|
2727
|
+
}
|
|
2728
|
+
}
|
|
2698
2729
|
.hover\:\!text-\[color\:var\(--cmp-radioButton-content-hover\)\] {
|
|
2699
2730
|
&:hover {
|
|
2700
2731
|
@media (hover: hover) {
|