@run-ai-dev/styles 1.0.8 → 1.0.9
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/package.json +1 -1
- package/src/index.css +38 -5
package/package.json
CHANGED
package/src/index.css
CHANGED
|
@@ -12,7 +12,6 @@
|
|
|
12
12
|
"Courier New", monospace;
|
|
13
13
|
--color-red-600: oklch(57.7% 0.245 27.325);
|
|
14
14
|
--color-orange-100: oklch(95.4% 0.038 75.164);
|
|
15
|
-
--color-blue-100: oklch(93.2% 0.032 255.585);
|
|
16
15
|
--color-gray-200: oklch(92.8% 0.006 264.531);
|
|
17
16
|
--color-gray-400: oklch(70.7% 0.022 261.325);
|
|
18
17
|
--color-gray-500: oklch(55.1% 0.027 264.364);
|
|
@@ -859,6 +858,10 @@
|
|
|
859
858
|
display: table;
|
|
860
859
|
}
|
|
861
860
|
|
|
861
|
+
.\[field-sizing\:content\] {
|
|
862
|
+
field-sizing: content;
|
|
863
|
+
}
|
|
864
|
+
|
|
862
865
|
.\!h-full {
|
|
863
866
|
height: 100% !important;
|
|
864
867
|
}
|
|
@@ -967,6 +970,10 @@
|
|
|
967
970
|
height: 100vh;
|
|
968
971
|
}
|
|
969
972
|
|
|
973
|
+
.max-h-25 {
|
|
974
|
+
max-height: calc(var(--spacing) * 25);
|
|
975
|
+
}
|
|
976
|
+
|
|
970
977
|
.max-h-50 {
|
|
971
978
|
max-height: calc(var(--spacing) * 50);
|
|
972
979
|
}
|
|
@@ -1654,10 +1661,6 @@
|
|
|
1654
1661
|
background-color: var(--color-black);
|
|
1655
1662
|
}
|
|
1656
1663
|
|
|
1657
|
-
.bg-blue-100 {
|
|
1658
|
-
background-color: var(--color-blue-100);
|
|
1659
|
-
}
|
|
1660
|
-
|
|
1661
1664
|
.bg-charcoal-blue {
|
|
1662
1665
|
background-color: var(--color-charcoal-blue);
|
|
1663
1666
|
}
|
|
@@ -3147,12 +3150,42 @@
|
|
|
3147
3150
|
}
|
|
3148
3151
|
}
|
|
3149
3152
|
|
|
3153
|
+
.lg\:min-h-10 {
|
|
3154
|
+
@media (min-width:1025px) {
|
|
3155
|
+
min-height: calc(var(--spacing) * 10);
|
|
3156
|
+
}
|
|
3157
|
+
}
|
|
3158
|
+
|
|
3159
|
+
.lg\:min-h-12 {
|
|
3160
|
+
@media (min-width:1025px) {
|
|
3161
|
+
min-height: calc(var(--spacing) * 12);
|
|
3162
|
+
}
|
|
3163
|
+
}
|
|
3164
|
+
|
|
3165
|
+
.lg\:min-h-13 {
|
|
3166
|
+
@media (min-width:1025px) {
|
|
3167
|
+
min-height: calc(var(--spacing) * 13);
|
|
3168
|
+
}
|
|
3169
|
+
}
|
|
3170
|
+
|
|
3171
|
+
.lg\:min-h-15 {
|
|
3172
|
+
@media (min-width:1025px) {
|
|
3173
|
+
min-height: calc(var(--spacing) * 15);
|
|
3174
|
+
}
|
|
3175
|
+
}
|
|
3176
|
+
|
|
3150
3177
|
.lg\:min-h-17 {
|
|
3151
3178
|
@media (min-width:1025px) {
|
|
3152
3179
|
min-height: calc(var(--spacing) * 17);
|
|
3153
3180
|
}
|
|
3154
3181
|
}
|
|
3155
3182
|
|
|
3183
|
+
.lg\:min-h-20 {
|
|
3184
|
+
@media (min-width:1025px) {
|
|
3185
|
+
min-height: calc(var(--spacing) * 20);
|
|
3186
|
+
}
|
|
3187
|
+
}
|
|
3188
|
+
|
|
3156
3189
|
.lg\:min-h-29 {
|
|
3157
3190
|
@media (min-width:1025px) {
|
|
3158
3191
|
min-height: calc(var(--spacing) * 29);
|