@algorithm-shift/design-system 1.3.107 → 1.3.109
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/index.css +3 -9
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +292 -92
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +307 -107
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -688,6 +688,9 @@
|
|
|
688
688
|
.max-h-0 {
|
|
689
689
|
max-height: calc(var(--spacing) * 0);
|
|
690
690
|
}
|
|
691
|
+
.max-h-56 {
|
|
692
|
+
max-height: calc(var(--spacing) * 56);
|
|
693
|
+
}
|
|
691
694
|
.max-h-60 {
|
|
692
695
|
max-height: calc(var(--spacing) * 60);
|
|
693
696
|
}
|
|
@@ -751,9 +754,6 @@
|
|
|
751
754
|
.w-3 {
|
|
752
755
|
width: calc(var(--spacing) * 3);
|
|
753
756
|
}
|
|
754
|
-
.w-3\/4 {
|
|
755
|
-
width: calc(3/4 * 100%);
|
|
756
|
-
}
|
|
757
757
|
.w-4 {
|
|
758
758
|
width: calc(var(--spacing) * 4);
|
|
759
759
|
}
|
|
@@ -844,9 +844,6 @@
|
|
|
844
844
|
.max-w-\[150px\] {
|
|
845
845
|
max-width: 150px;
|
|
846
846
|
}
|
|
847
|
-
.max-w-\[400px\] {
|
|
848
|
-
max-width: 400px;
|
|
849
|
-
}
|
|
850
847
|
.max-w-\[calc\(100\%-2rem\)\] {
|
|
851
848
|
max-width: calc(100% - 2rem);
|
|
852
849
|
}
|
|
@@ -1265,9 +1262,6 @@
|
|
|
1265
1262
|
.border-gray-400 {
|
|
1266
1263
|
border-color: var(--color-gray-400);
|
|
1267
1264
|
}
|
|
1268
|
-
.border-green-700 {
|
|
1269
|
-
border-color: var(--color-green-700);
|
|
1270
|
-
}
|
|
1271
1265
|
.border-input {
|
|
1272
1266
|
border-color: var(--input);
|
|
1273
1267
|
}
|