@snabcentr/client-ui 3.51.1 → 3.51.3
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/banner/sc-banner.component.d.ts +10 -13
- package/cart/add-or-editing-cart-item-dialog/sc-add-or-editing-cart-item-dialog.component.d.ts +5 -4
- package/esm2022/banner/sc-banner.component.mjs +23 -29
- package/esm2022/cart/add-or-editing-cart-item-dialog/sc-add-or-editing-cart-item-dialog.component.mjs +7 -5
- package/esm2022/order/draft/sc-draft.component.mjs +3 -3
- package/esm2022/order/order-items-list-by-directions/sc-order-items-list-by-directions.component.mjs +3 -3
- package/fesm2022/snabcentr-client-ui.mjs +29 -33
- package/fesm2022/snabcentr-client-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/styles/tailwind/tailwind.scss +16 -8
package/package.json
CHANGED
|
@@ -724,10 +724,6 @@ video {
|
|
|
724
724
|
margin-left: 1.25rem;
|
|
725
725
|
}
|
|
726
726
|
|
|
727
|
-
.ml-auto {
|
|
728
|
-
margin-left: auto;
|
|
729
|
-
}
|
|
730
|
-
|
|
731
727
|
.mr-2 {
|
|
732
728
|
margin-right: 0.5rem;
|
|
733
729
|
}
|
|
@@ -1077,10 +1073,6 @@ video {
|
|
|
1077
1073
|
flex-wrap: wrap;
|
|
1078
1074
|
}
|
|
1079
1075
|
|
|
1080
|
-
.flex-wrap-reverse {
|
|
1081
|
-
flex-wrap: wrap-reverse;
|
|
1082
|
-
}
|
|
1083
|
-
|
|
1084
1076
|
.\!items-start {
|
|
1085
1077
|
align-items: flex-start !important;
|
|
1086
1078
|
}
|
|
@@ -1840,10 +1832,26 @@ video {
|
|
|
1840
1832
|
}
|
|
1841
1833
|
|
|
1842
1834
|
@media (min-width: 640px) {
|
|
1835
|
+
.sm\:ml-auto {
|
|
1836
|
+
margin-left: auto;
|
|
1837
|
+
}
|
|
1838
|
+
|
|
1843
1839
|
.sm\:grid-cols-2 {
|
|
1844
1840
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1845
1841
|
}
|
|
1846
1842
|
|
|
1843
|
+
.sm\:flex-row {
|
|
1844
|
+
flex-direction: row;
|
|
1845
|
+
}
|
|
1846
|
+
|
|
1847
|
+
.sm\:flex-wrap-reverse {
|
|
1848
|
+
flex-wrap: wrap-reverse;
|
|
1849
|
+
}
|
|
1850
|
+
|
|
1851
|
+
.sm\:items-start {
|
|
1852
|
+
align-items: flex-start;
|
|
1853
|
+
}
|
|
1854
|
+
|
|
1847
1855
|
.sm\:border-32 {
|
|
1848
1856
|
border-width: 2rem;
|
|
1849
1857
|
}
|