Skip to content

Commit 2ded4c9

Browse files
committed
styles
1 parent 27c4957 commit 2ded4c9

File tree

1 file changed

+24
-3
lines changed

1 file changed

+24
-3
lines changed

packages/connect/src/styles.ts

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,9 @@ export const styles = String.raw`
212212
.relative {
213213
position: relative;
214214
}
215+
.sticky {
216+
position: sticky;
217+
}
215218
.inset-0 {
216219
inset: calc(var(--spacing) * 0);
217220
}
@@ -317,9 +320,6 @@ export const styles = String.raw`
317320
.mt-0 {
318321
margin-top: calc(var(--spacing) * 0);
319322
}
320-
.mt-0\.5 {
321-
margin-top: calc(var(--spacing) * 0.5);
322-
}
323323
.mt-1 {
324324
margin-top: calc(var(--spacing) * 1);
325325
}
@@ -452,6 +452,9 @@ export const styles = String.raw`
452452
.h-\[1px\] {
453453
height: 1px;
454454
}
455+
.h-\[2px\] {
456+
height: 2px;
457+
}
455458
.h-\[17px\] {
456459
height: 17px;
457460
}
@@ -769,6 +772,11 @@ export const styles = String.raw`
769772
.justify-self-center {
770773
justify-self: center;
771774
}
775+
.truncate {
776+
overflow: hidden;
777+
text-overflow: ellipsis;
778+
white-space: nowrap;
779+
}
772780
.overflow-hidden {
773781
overflow: hidden;
774782
}
@@ -796,6 +804,9 @@ export const styles = String.raw`
796804
.rounded {
797805
border-radius: 0.25rem;
798806
}
807+
.rounded-2xl {
808+
border-radius: var(--radius-2xl);
809+
}
799810
.rounded-full {
800811
border-radius: calc(infinity * 1px);
801812
}
@@ -1279,6 +1290,9 @@ export const styles = String.raw`
12791290
.text-primary {
12801291
color: var(--seq-color-primary);
12811292
}
1293+
.text-red-500 {
1294+
color: var(--color-red-500);
1295+
}
12821296
.text-secondary {
12831297
color: var(--seq-color-secondary);
12841298
}
@@ -1317,6 +1331,9 @@ export const styles = String.raw`
13171331
.opacity-50 {
13181332
opacity: 50%;
13191333
}
1334+
.opacity-75 {
1335+
opacity: 75%;
1336+
}
13201337
.opacity-100 {
13211338
opacity: 100%;
13221339
}
@@ -1328,6 +1345,10 @@ export const styles = String.raw`
13281345
--tw-shadow: 0 0 10px 0 var(--tw-shadow-color, rgba(0,0,0,0.5));
13291346
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
13301347
}
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+
}
13311352
.ring-1 {
13321353
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
13331354
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

Comments
 (0)