@@ -212,6 +212,9 @@ export const styles = String.raw`
212
212
.relative {
213
213
position: relative;
214
214
}
215
+ .sticky {
216
+ position: sticky;
217
+ }
215
218
.inset-0 {
216
219
inset: calc(var(--spacing) * 0);
217
220
}
@@ -317,9 +320,6 @@ export const styles = String.raw`
317
320
.mt-0 {
318
321
margin-top: calc(var(--spacing) * 0);
319
322
}
320
- .mt-0\.5 {
321
- margin-top: calc(var(--spacing) * 0.5);
322
- }
323
323
.mt-1 {
324
324
margin-top: calc(var(--spacing) * 1);
325
325
}
@@ -452,6 +452,9 @@ export const styles = String.raw`
452
452
.h-\[1px\] {
453
453
height: 1px;
454
454
}
455
+ .h-\[2px\] {
456
+ height: 2px;
457
+ }
455
458
.h-\[17px\] {
456
459
height: 17px;
457
460
}
@@ -769,6 +772,11 @@ export const styles = String.raw`
769
772
.justify-self-center {
770
773
justify-self: center;
771
774
}
775
+ .truncate {
776
+ overflow: hidden;
777
+ text-overflow: ellipsis;
778
+ white-space: nowrap;
779
+ }
772
780
.overflow-hidden {
773
781
overflow: hidden;
774
782
}
@@ -796,6 +804,9 @@ export const styles = String.raw`
796
804
.rounded {
797
805
border-radius: 0.25rem;
798
806
}
807
+ .rounded-2xl {
808
+ border-radius: var(--radius-2xl);
809
+ }
799
810
.rounded-full {
800
811
border-radius: calc(infinity * 1px);
801
812
}
@@ -1279,6 +1290,9 @@ export const styles = String.raw`
1279
1290
.text-primary {
1280
1291
color: var(--seq-color-primary);
1281
1292
}
1293
+ .text-red-500 {
1294
+ color: var(--color-red-500);
1295
+ }
1282
1296
.text-secondary {
1283
1297
color: var(--seq-color-secondary);
1284
1298
}
@@ -1317,6 +1331,9 @@ export const styles = String.raw`
1317
1331
.opacity-50 {
1318
1332
opacity: 50%;
1319
1333
}
1334
+ .opacity-75 {
1335
+ opacity: 75%;
1336
+ }
1320
1337
.opacity-100 {
1321
1338
opacity: 100%;
1322
1339
}
@@ -1328,6 +1345,10 @@ export const styles = String.raw`
1328
1345
--tw-shadow: 0 0 10px 0 var(--tw-shadow-color, rgba(0,0,0,0.5));
1329
1346
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1330
1347
}
1348
+ .shadow-sm {
1349
+ --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
1350
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1351
+ }
1331
1352
.ring-1 {
1332
1353
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1333
1354
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
0 commit comments