@redseed/redseed-ui-tailwindcss 5.3.0 → 5.3.1
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/components/button_slot.css +16 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.rsui-button-slot {
|
|
2
2
|
/* default control */
|
|
3
|
-
@apply w-fit h-fit inline-flex shrink-0 items-center
|
|
3
|
+
@apply w-fit h-fit inline-flex shrink-0 items-center select-none outline-none whitespace-nowrap will-change-transform;
|
|
4
4
|
|
|
5
5
|
/* default shape */
|
|
6
6
|
@apply border rounded-lg transition gap-1.5;
|
|
@@ -36,6 +36,21 @@
|
|
|
36
36
|
@apply flex-1 w-full;
|
|
37
37
|
}
|
|
38
38
|
|
|
39
|
+
/* modifier left alignment */
|
|
40
|
+
.rsui-button-slot--left {
|
|
41
|
+
@apply justify-start;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
/* modifier center alignment */
|
|
45
|
+
.rsui-button-slot--center {
|
|
46
|
+
@apply justify-center;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
/* modifier right alignment */
|
|
50
|
+
.rsui-button-slot--right {
|
|
51
|
+
@apply justify-end;
|
|
52
|
+
}
|
|
53
|
+
|
|
39
54
|
/* modifier sm size */
|
|
40
55
|
.rsui-button-slot--sm {
|
|
41
56
|
@apply text-sm px-spacing-lg py-spacing-md gap-spacing-xs;
|