@rovula/ui 0.0.9 → 0.0.10
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/cjs/bundle.css +429 -3
- package/dist/cjs/bundle.js +1 -1
- package/dist/cjs/bundle.js.map +1 -1
- package/dist/cjs/types/components/AlertDialog/Alert.stories.d.ts +20 -0
- package/dist/cjs/types/components/AlertDialog/AlertDialog.d.ts +20 -0
- package/dist/cjs/types/components/Button/Button.styles.d.ts +1 -1
- package/dist/cjs/types/components/Checkbox/Checkbox.d.ts +4 -0
- package/dist/cjs/types/components/Checkbox/Checkbox.stories.d.ts +308 -0
- package/dist/cjs/types/components/Dialog/Dialog.d.ts +19 -0
- package/dist/cjs/types/components/Dialog/Dialog.stories.d.ts +25 -0
- package/dist/cjs/types/components/Input/Input.d.ts +5 -0
- package/dist/cjs/types/components/Input/Input.stories.d.ts +314 -0
- package/dist/cjs/types/components/Label/Label.d.ts +5 -0
- package/dist/cjs/types/components/Label/Label.stories.d.ts +286 -0
- package/dist/cjs/types/components/RadioGroup/RadioGroup.d.ts +5 -0
- package/dist/cjs/types/components/RadioGroup/RadioGroup.stories.d.ts +299 -0
- package/dist/cjs/types/components/Table/Datagrid.d.ts +11 -0
- package/dist/cjs/types/components/Table/Table.d.ts +10 -11
- package/dist/cjs/types/components/Table/Table.stories.d.ts +283 -0
- package/dist/cjs/types/components/Tabs/Tabs.d.ts +7 -5
- package/dist/cjs/types/components/Tabs/Tabs.stories.d.ts +49 -0
- package/dist/cjs/types/index.d.ts +7 -1
- package/dist/cjs/types/utils/cn.d.ts +2 -0
- package/dist/components/AlertDialog/Alert.stories.js +39 -0
- package/dist/components/AlertDialog/AlertDialog.js +73 -0
- package/dist/components/Button/Button.js +3 -3
- package/dist/components/Button/Button.styles.js +1 -1
- package/dist/components/Checkbox/Checkbox.js +37 -0
- package/dist/components/Checkbox/Checkbox.stories.js +49 -0
- package/dist/components/Dialog/Dialog.js +63 -0
- package/dist/components/Dialog/Dialog.stories.js +52 -0
- package/dist/components/Input/Input.js +31 -0
- package/dist/components/Input/Input.stories.js +37 -0
- package/dist/components/Label/Label.js +35 -0
- package/dist/components/Label/Label.stories.js +38 -0
- package/dist/components/RadioGroup/RadioGroup.js +41 -0
- package/dist/components/RadioGroup/RadioGroup.stories.js +44 -0
- package/dist/components/Table/Datagrid.js +6 -0
- package/dist/components/Table/Table.js +65 -5
- package/dist/components/Table/Table.stories.js +32 -0
- package/dist/components/Tabs/Tabs.js +10 -4
- package/dist/components/Tabs/Tabs.stories.js +60 -0
- package/dist/esm/bundle.css +429 -3
- package/dist/esm/bundle.js +1 -1
- package/dist/esm/bundle.js.map +1 -1
- package/dist/esm/types/components/AlertDialog/Alert.stories.d.ts +20 -0
- package/dist/esm/types/components/AlertDialog/AlertDialog.d.ts +20 -0
- package/dist/esm/types/components/Button/Button.styles.d.ts +1 -1
- package/dist/esm/types/components/Checkbox/Checkbox.d.ts +4 -0
- package/dist/esm/types/components/Checkbox/Checkbox.stories.d.ts +308 -0
- package/dist/esm/types/components/Dialog/Dialog.d.ts +19 -0
- package/dist/esm/types/components/Dialog/Dialog.stories.d.ts +25 -0
- package/dist/esm/types/components/Input/Input.d.ts +5 -0
- package/dist/esm/types/components/Input/Input.stories.d.ts +314 -0
- package/dist/esm/types/components/Label/Label.d.ts +5 -0
- package/dist/esm/types/components/Label/Label.stories.d.ts +286 -0
- package/dist/esm/types/components/RadioGroup/RadioGroup.d.ts +5 -0
- package/dist/esm/types/components/RadioGroup/RadioGroup.stories.d.ts +299 -0
- package/dist/esm/types/components/Table/Datagrid.d.ts +11 -0
- package/dist/esm/types/components/Table/Table.d.ts +10 -11
- package/dist/esm/types/components/Table/Table.stories.d.ts +283 -0
- package/dist/esm/types/components/Tabs/Tabs.d.ts +7 -5
- package/dist/esm/types/components/Tabs/Tabs.stories.d.ts +49 -0
- package/dist/esm/types/index.d.ts +7 -1
- package/dist/esm/types/utils/cn.d.ts +2 -0
- package/dist/index.d.ts +82 -28
- package/dist/index.js +7 -1
- package/dist/src/theme/global.css +511 -3
- package/dist/theme/global.css +57 -0
- package/dist/theme/main-preset.js +29 -1
- package/dist/theme/presets/colors.js +19 -0
- package/dist/utils/cn.js +9 -0
- package/package.json +9 -1
- package/src/components/AlertDialog/Alert.stories.tsx +67 -0
- package/src/components/AlertDialog/AlertDialog.tsx +142 -0
- package/src/components/Button/Button.styles.ts +1 -1
- package/src/components/Button/Button.tsx +4 -4
- package/src/components/Checkbox/Checkbox.stories.tsx +91 -0
- package/src/components/Checkbox/Checkbox.tsx +36 -0
- package/src/components/Dialog/Dialog.stories.tsx +118 -0
- package/src/components/Dialog/Dialog.tsx +119 -0
- package/src/components/Input/Input.stories.tsx +40 -0
- package/src/components/Input/Input.tsx +25 -0
- package/src/components/Label/Label.stories.tsx +45 -0
- package/src/components/Label/Label.tsx +26 -0
- package/src/components/RadioGroup/RadioGroup.stories.tsx +71 -0
- package/src/components/RadioGroup/RadioGroup.tsx +59 -0
- package/src/components/Table/Datagrid.tsx +36 -0
- package/src/components/Table/Table.stories.tsx +79 -0
- package/src/components/Table/Table.tsx +116 -35
- package/src/components/Tabs/Tabs.stories.tsx +75 -0
- package/src/components/Tabs/Tabs.tsx +39 -10
- package/src/index.ts +8 -1
- package/src/theme/global.css +57 -0
- package/src/theme/main-preset.js +29 -1
- package/src/theme/presets/colors.js +19 -0
- package/src/utils/cn.ts +6 -0
|
@@ -665,6 +665,49 @@ video {
|
|
|
665
665
|
--input-disabled-stroke-color: 239 239 239;
|
|
666
666
|
--input-disabled-background-color: 247 247 247;
|
|
667
667
|
--input-label-background-color: 249 251 255;
|
|
668
|
+
/* Text */
|
|
669
|
+
--text-default-dark: 1 1 68;
|
|
670
|
+
--text-default-medium: 47 78 255;
|
|
671
|
+
--text-default-light: 213 230 255;
|
|
672
|
+
--text-grey-dark: 29 30 39;
|
|
673
|
+
--text-grey-medium: 117 121 128;
|
|
674
|
+
--text-grey-light: 164 169 178;
|
|
675
|
+
--text-white: 255 255 255;
|
|
676
|
+
/* Other/Popup */
|
|
677
|
+
--popup-background: 249 251 255;
|
|
678
|
+
/* Other/Popup Curtain */
|
|
679
|
+
--popup-overlay: 0 0 0;
|
|
680
|
+
--popup-overlay-alpha: 0.48;
|
|
681
|
+
--popup-rounded: 24px;
|
|
682
|
+
/* TODO for shadcn, wait for refactor */
|
|
683
|
+
/* --background: 0 0% 100%; */
|
|
684
|
+
--background: 220 100% 99%;
|
|
685
|
+
--foreground: 222.2 47.4% 11.2%;
|
|
686
|
+
--muted: 210 40% 96.1%;
|
|
687
|
+
--muted-foreground: 215.4 16.3% 46.9%;
|
|
688
|
+
--popover: 0 0% 100%;
|
|
689
|
+
--popover-foreground: 222.2 47.4% 11.2%;
|
|
690
|
+
--border: 214.3 31.8% 91.4%;
|
|
691
|
+
--input: 214.3 31.8% 91.4%;
|
|
692
|
+
--card: 0 0% 100%;
|
|
693
|
+
--card-foreground: 222.2 47.4% 11.2%;
|
|
694
|
+
--primary: var(--primary-default);
|
|
695
|
+
--secondary: var(--secondary-default);
|
|
696
|
+
--accent: 210 40% 96.1%;
|
|
697
|
+
--accent-foreground: 222.2 47.4% 11.2%;
|
|
698
|
+
--destructive: 0 100% 50%;
|
|
699
|
+
--destructive-foreground: 210 40% 98%;
|
|
700
|
+
--ring: 215 20.2% 65.1%;
|
|
701
|
+
--radius: 0.5rem;
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
* {
|
|
705
|
+
border-color: hsl(var(--border));
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
body {
|
|
709
|
+
background-color: hsl(var(--background));
|
|
710
|
+
color: hsl(var(--foreground));
|
|
668
711
|
}
|
|
669
712
|
|
|
670
713
|
*, ::before, ::after {
|
|
@@ -775,10 +818,40 @@ video {
|
|
|
775
818
|
--tw-contain-style: ;
|
|
776
819
|
}
|
|
777
820
|
|
|
821
|
+
.container {
|
|
822
|
+
width: 100%;
|
|
823
|
+
margin-right: auto;
|
|
824
|
+
margin-left: auto;
|
|
825
|
+
padding-right: 2rem;
|
|
826
|
+
padding-left: 2rem;
|
|
827
|
+
}
|
|
828
|
+
|
|
829
|
+
@media (min-width: 1400px) {
|
|
830
|
+
.container {
|
|
831
|
+
max-width: 1400px;
|
|
832
|
+
}
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
.sr-only {
|
|
836
|
+
position: absolute;
|
|
837
|
+
width: 1px;
|
|
838
|
+
height: 1px;
|
|
839
|
+
padding: 0;
|
|
840
|
+
margin: -1px;
|
|
841
|
+
overflow: hidden;
|
|
842
|
+
clip: rect(0, 0, 0, 0);
|
|
843
|
+
white-space: nowrap;
|
|
844
|
+
border-width: 0;
|
|
845
|
+
}
|
|
846
|
+
|
|
778
847
|
.pointer-events-none {
|
|
779
848
|
pointer-events: none;
|
|
780
849
|
}
|
|
781
850
|
|
|
851
|
+
.fixed {
|
|
852
|
+
position: fixed;
|
|
853
|
+
}
|
|
854
|
+
|
|
782
855
|
.absolute {
|
|
783
856
|
position: absolute;
|
|
784
857
|
}
|
|
@@ -787,6 +860,10 @@ video {
|
|
|
787
860
|
position: relative;
|
|
788
861
|
}
|
|
789
862
|
|
|
863
|
+
.inset-0 {
|
|
864
|
+
inset: 0px;
|
|
865
|
+
}
|
|
866
|
+
|
|
790
867
|
.inset-y-0 {
|
|
791
868
|
top: 0px;
|
|
792
869
|
bottom: 0px;
|
|
@@ -808,10 +885,26 @@ video {
|
|
|
808
885
|
left: 1rem;
|
|
809
886
|
}
|
|
810
887
|
|
|
888
|
+
.left-\[50\%\] {
|
|
889
|
+
left: 50%;
|
|
890
|
+
}
|
|
891
|
+
|
|
811
892
|
.right-0 {
|
|
812
893
|
right: 0px;
|
|
813
894
|
}
|
|
814
895
|
|
|
896
|
+
.right-4 {
|
|
897
|
+
right: 1rem;
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
.top-4 {
|
|
901
|
+
top: 1rem;
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
.top-\[50\%\] {
|
|
905
|
+
top: 50%;
|
|
906
|
+
}
|
|
907
|
+
|
|
815
908
|
.z-10 {
|
|
816
909
|
z-index: 10;
|
|
817
910
|
}
|
|
@@ -820,6 +913,10 @@ video {
|
|
|
820
913
|
z-index: 50;
|
|
821
914
|
}
|
|
822
915
|
|
|
916
|
+
.col-span-3 {
|
|
917
|
+
grid-column: span 3 / span 3;
|
|
918
|
+
}
|
|
919
|
+
|
|
823
920
|
.mx-auto {
|
|
824
921
|
margin-left: auto;
|
|
825
922
|
margin-right: auto;
|
|
@@ -846,6 +943,14 @@ video {
|
|
|
846
943
|
margin-top: 0.25rem;
|
|
847
944
|
}
|
|
848
945
|
|
|
946
|
+
.mt-2 {
|
|
947
|
+
margin-top: 0.5rem;
|
|
948
|
+
}
|
|
949
|
+
|
|
950
|
+
.mt-4 {
|
|
951
|
+
margin-top: 1rem;
|
|
952
|
+
}
|
|
953
|
+
|
|
849
954
|
.mt-\[6px\] {
|
|
850
955
|
margin-top: 6px;
|
|
851
956
|
}
|
|
@@ -878,6 +983,20 @@ video {
|
|
|
878
983
|
display: none;
|
|
879
984
|
}
|
|
880
985
|
|
|
986
|
+
.aspect-square {
|
|
987
|
+
aspect-ratio: 1 / 1;
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
.size-2 {
|
|
991
|
+
width: 0.5rem;
|
|
992
|
+
height: 0.5rem;
|
|
993
|
+
}
|
|
994
|
+
|
|
995
|
+
.size-2\.5 {
|
|
996
|
+
width: 0.625rem;
|
|
997
|
+
height: 0.625rem;
|
|
998
|
+
}
|
|
999
|
+
|
|
881
1000
|
.size-3 {
|
|
882
1001
|
width: 0.75rem;
|
|
883
1002
|
height: 0.75rem;
|
|
@@ -903,10 +1022,34 @@ video {
|
|
|
903
1022
|
height: 14px;
|
|
904
1023
|
}
|
|
905
1024
|
|
|
1025
|
+
.h-10 {
|
|
1026
|
+
height: 2.5rem;
|
|
1027
|
+
}
|
|
1028
|
+
|
|
1029
|
+
.h-12 {
|
|
1030
|
+
height: 3rem;
|
|
1031
|
+
}
|
|
1032
|
+
|
|
1033
|
+
.h-4 {
|
|
1034
|
+
height: 1rem;
|
|
1035
|
+
}
|
|
1036
|
+
|
|
1037
|
+
.h-\[54px\] {
|
|
1038
|
+
height: 54px;
|
|
1039
|
+
}
|
|
1040
|
+
|
|
906
1041
|
.max-h-60 {
|
|
907
1042
|
max-height: 15rem;
|
|
908
1043
|
}
|
|
909
1044
|
|
|
1045
|
+
.w-4 {
|
|
1046
|
+
width: 1rem;
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1049
|
+
.w-\[100px\] {
|
|
1050
|
+
width: 100px;
|
|
1051
|
+
}
|
|
1052
|
+
|
|
910
1053
|
.w-\[200px\] {
|
|
911
1054
|
width: 200px;
|
|
912
1055
|
}
|
|
@@ -927,6 +1070,28 @@ video {
|
|
|
927
1070
|
max-width: 48rem;
|
|
928
1071
|
}
|
|
929
1072
|
|
|
1073
|
+
.max-w-lg {
|
|
1074
|
+
max-width: 32rem;
|
|
1075
|
+
}
|
|
1076
|
+
|
|
1077
|
+
.shrink-0 {
|
|
1078
|
+
flex-shrink: 0;
|
|
1079
|
+
}
|
|
1080
|
+
|
|
1081
|
+
.caption-bottom {
|
|
1082
|
+
caption-side: bottom;
|
|
1083
|
+
}
|
|
1084
|
+
|
|
1085
|
+
.translate-x-\[-50\%\] {
|
|
1086
|
+
--tw-translate-x: -50%;
|
|
1087
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1088
|
+
}
|
|
1089
|
+
|
|
1090
|
+
.translate-y-\[-50\%\] {
|
|
1091
|
+
--tw-translate-y: -50%;
|
|
1092
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1093
|
+
}
|
|
1094
|
+
|
|
930
1095
|
.rotate-180 {
|
|
931
1096
|
--tw-rotate: 180deg;
|
|
932
1097
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
@@ -948,6 +1113,10 @@ video {
|
|
|
948
1113
|
appearance: none;
|
|
949
1114
|
}
|
|
950
1115
|
|
|
1116
|
+
.grid-cols-4 {
|
|
1117
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
1118
|
+
}
|
|
1119
|
+
|
|
951
1120
|
.grid-cols-\[auto_1fr\] {
|
|
952
1121
|
grid-template-columns: auto 1fr;
|
|
953
1122
|
}
|
|
@@ -960,6 +1129,10 @@ video {
|
|
|
960
1129
|
flex-direction: column;
|
|
961
1130
|
}
|
|
962
1131
|
|
|
1132
|
+
.flex-col-reverse {
|
|
1133
|
+
flex-direction: column-reverse;
|
|
1134
|
+
}
|
|
1135
|
+
|
|
963
1136
|
.items-center {
|
|
964
1137
|
align-items: center;
|
|
965
1138
|
}
|
|
@@ -972,14 +1145,26 @@ video {
|
|
|
972
1145
|
gap: 0.25rem;
|
|
973
1146
|
}
|
|
974
1147
|
|
|
1148
|
+
.gap-1\.5 {
|
|
1149
|
+
gap: 0.375rem;
|
|
1150
|
+
}
|
|
1151
|
+
|
|
975
1152
|
.gap-2 {
|
|
976
1153
|
gap: 0.5rem;
|
|
977
1154
|
}
|
|
978
1155
|
|
|
1156
|
+
.gap-3 {
|
|
1157
|
+
gap: 0.75rem;
|
|
1158
|
+
}
|
|
1159
|
+
|
|
979
1160
|
.gap-4 {
|
|
980
1161
|
gap: 1rem;
|
|
981
1162
|
}
|
|
982
1163
|
|
|
1164
|
+
.gap-6 {
|
|
1165
|
+
gap: 1.5rem;
|
|
1166
|
+
}
|
|
1167
|
+
|
|
983
1168
|
.gap-x-8 {
|
|
984
1169
|
-moz-column-gap: 2rem;
|
|
985
1170
|
column-gap: 2rem;
|
|
@@ -993,6 +1178,28 @@ video {
|
|
|
993
1178
|
row-gap: 1.5rem;
|
|
994
1179
|
}
|
|
995
1180
|
|
|
1181
|
+
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
|
|
1182
|
+
--tw-space-x-reverse: 0;
|
|
1183
|
+
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
1184
|
+
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1185
|
+
}
|
|
1186
|
+
|
|
1187
|
+
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
|
|
1188
|
+
--tw-space-y-reverse: 0;
|
|
1189
|
+
margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1190
|
+
margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
|
|
1191
|
+
}
|
|
1192
|
+
|
|
1193
|
+
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
|
|
1194
|
+
--tw-space-y-reverse: 0;
|
|
1195
|
+
margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1196
|
+
margin-bottom: calc(1rem * var(--tw-space-y-reverse));
|
|
1197
|
+
}
|
|
1198
|
+
|
|
1199
|
+
.overflow-auto {
|
|
1200
|
+
overflow: auto;
|
|
1201
|
+
}
|
|
1202
|
+
|
|
996
1203
|
.overflow-x-auto {
|
|
997
1204
|
overflow-x: auto;
|
|
998
1205
|
}
|
|
@@ -1026,11 +1233,11 @@ video {
|
|
|
1026
1233
|
}
|
|
1027
1234
|
|
|
1028
1235
|
.rounded-lg {
|
|
1029
|
-
border-radius:
|
|
1236
|
+
border-radius: var(--radius);
|
|
1030
1237
|
}
|
|
1031
1238
|
|
|
1032
1239
|
.rounded-md {
|
|
1033
|
-
border-radius:
|
|
1240
|
+
border-radius: calc(var(--radius) - 2px);
|
|
1034
1241
|
}
|
|
1035
1242
|
|
|
1036
1243
|
.rounded-none {
|
|
@@ -1038,7 +1245,7 @@ video {
|
|
|
1038
1245
|
}
|
|
1039
1246
|
|
|
1040
1247
|
.rounded-sm {
|
|
1041
|
-
border-radius:
|
|
1248
|
+
border-radius: calc(var(--radius) - 4px);
|
|
1042
1249
|
}
|
|
1043
1250
|
|
|
1044
1251
|
.rounded-xl {
|
|
@@ -1053,10 +1260,22 @@ video {
|
|
|
1053
1260
|
border-width: 0px;
|
|
1054
1261
|
}
|
|
1055
1262
|
|
|
1263
|
+
.border-b {
|
|
1264
|
+
border-bottom-width: 1px;
|
|
1265
|
+
}
|
|
1266
|
+
|
|
1056
1267
|
.border-b-2 {
|
|
1057
1268
|
border-bottom-width: 2px;
|
|
1058
1269
|
}
|
|
1059
1270
|
|
|
1271
|
+
.border-b-\[3px\] {
|
|
1272
|
+
border-bottom-width: 3px;
|
|
1273
|
+
}
|
|
1274
|
+
|
|
1275
|
+
.border-t {
|
|
1276
|
+
border-top-width: 1px;
|
|
1277
|
+
}
|
|
1278
|
+
|
|
1060
1279
|
.border-error {
|
|
1061
1280
|
--tw-border-opacity: 1;
|
|
1062
1281
|
border-color: rgb(var(--error-100) / var(--tw-border-opacity));
|
|
@@ -1082,11 +1301,26 @@ video {
|
|
|
1082
1301
|
border-color: rgb(var(--primary-default) / var(--tw-border-opacity));
|
|
1083
1302
|
}
|
|
1084
1303
|
|
|
1304
|
+
.border-primary-10 {
|
|
1305
|
+
--tw-border-opacity: 1;
|
|
1306
|
+
border-color: rgb(var(--primary-10) / var(--tw-border-opacity));
|
|
1307
|
+
}
|
|
1308
|
+
|
|
1309
|
+
.border-primary-30 {
|
|
1310
|
+
--tw-border-opacity: 1;
|
|
1311
|
+
border-color: rgb(var(--primary-30) / var(--tw-border-opacity));
|
|
1312
|
+
}
|
|
1313
|
+
|
|
1085
1314
|
.border-secondary {
|
|
1086
1315
|
--tw-border-opacity: 1;
|
|
1087
1316
|
border-color: rgb(var(--secondary-default) / var(--tw-border-opacity));
|
|
1088
1317
|
}
|
|
1089
1318
|
|
|
1319
|
+
.border-secondary-110 {
|
|
1320
|
+
--tw-border-opacity: 1;
|
|
1321
|
+
border-color: rgb(var(--secondary-110) / var(--tw-border-opacity));
|
|
1322
|
+
}
|
|
1323
|
+
|
|
1090
1324
|
.border-success {
|
|
1091
1325
|
--tw-border-opacity: 1;
|
|
1092
1326
|
border-color: rgb(var(--success-default) / var(--tw-border-opacity));
|
|
@@ -1097,6 +1331,11 @@ video {
|
|
|
1097
1331
|
border-color: rgb(var(--tertiary-120) / var(--tw-border-opacity));
|
|
1098
1332
|
}
|
|
1099
1333
|
|
|
1334
|
+
.border-textcolor-dark {
|
|
1335
|
+
--tw-border-opacity: 1;
|
|
1336
|
+
border-color: rgb(var(--text-default-dark) / var(--tw-border-opacity));
|
|
1337
|
+
}
|
|
1338
|
+
|
|
1100
1339
|
.border-transparent {
|
|
1101
1340
|
border-color: transparent;
|
|
1102
1341
|
}
|
|
@@ -1106,6 +1345,10 @@ video {
|
|
|
1106
1345
|
border-color: rgb(var(--warning-default) / var(--tw-border-opacity));
|
|
1107
1346
|
}
|
|
1108
1347
|
|
|
1348
|
+
.bg-background {
|
|
1349
|
+
background-color: hsl(var(--background));
|
|
1350
|
+
}
|
|
1351
|
+
|
|
1109
1352
|
.bg-error {
|
|
1110
1353
|
--tw-bg-opacity: 1;
|
|
1111
1354
|
background-color: rgb(var(--error-100) / var(--tw-bg-opacity));
|
|
@@ -1116,6 +1359,11 @@ video {
|
|
|
1116
1359
|
background-color: rgb(229 231 235 / var(--tw-bg-opacity));
|
|
1117
1360
|
}
|
|
1118
1361
|
|
|
1362
|
+
.bg-grey2-300 {
|
|
1363
|
+
--tw-bg-opacity: 1;
|
|
1364
|
+
background-color: rgb(var(--grey2-300) / var(--tw-bg-opacity));
|
|
1365
|
+
}
|
|
1366
|
+
|
|
1119
1367
|
.bg-info {
|
|
1120
1368
|
--tw-bg-opacity: 1;
|
|
1121
1369
|
background-color: rgb(var(--info-default) / var(--tw-bg-opacity));
|
|
@@ -1126,6 +1374,15 @@ video {
|
|
|
1126
1374
|
background-color: rgb(var(--input-label-background-color) / var(--tw-bg-opacity));
|
|
1127
1375
|
}
|
|
1128
1376
|
|
|
1377
|
+
.bg-popup-background {
|
|
1378
|
+
--tw-bg-opacity: 1;
|
|
1379
|
+
background-color: rgb(var(--popup-background) / var(--tw-bg-opacity));
|
|
1380
|
+
}
|
|
1381
|
+
|
|
1382
|
+
.bg-popup-overlay {
|
|
1383
|
+
background-color: rgb(var(--popup-overlay) / var(--popup-overlay-alpha));
|
|
1384
|
+
}
|
|
1385
|
+
|
|
1129
1386
|
.bg-primary {
|
|
1130
1387
|
--tw-bg-opacity: 1;
|
|
1131
1388
|
background-color: rgb(var(--primary-default) / var(--tw-bg-opacity));
|
|
@@ -1165,6 +1422,10 @@ video {
|
|
|
1165
1422
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
1166
1423
|
}
|
|
1167
1424
|
|
|
1425
|
+
.fill-current {
|
|
1426
|
+
fill: currentColor;
|
|
1427
|
+
}
|
|
1428
|
+
|
|
1168
1429
|
.fill-error {
|
|
1169
1430
|
fill: rgb(var(--error-100) / 1);
|
|
1170
1431
|
}
|
|
@@ -1185,6 +1446,10 @@ video {
|
|
|
1185
1446
|
fill: rgb(var(--input-disabled-text-color) / 1);
|
|
1186
1447
|
}
|
|
1187
1448
|
|
|
1449
|
+
.fill-secondary-110 {
|
|
1450
|
+
fill: rgb(var(--secondary-110) / 1);
|
|
1451
|
+
}
|
|
1452
|
+
|
|
1188
1453
|
.p-1 {
|
|
1189
1454
|
padding: 0.25rem;
|
|
1190
1455
|
}
|
|
@@ -1201,6 +1466,19 @@ video {
|
|
|
1201
1466
|
padding: 1.25rem;
|
|
1202
1467
|
}
|
|
1203
1468
|
|
|
1469
|
+
.p-6 {
|
|
1470
|
+
padding: 1.5rem;
|
|
1471
|
+
}
|
|
1472
|
+
|
|
1473
|
+
.p-8 {
|
|
1474
|
+
padding: 2rem;
|
|
1475
|
+
}
|
|
1476
|
+
|
|
1477
|
+
.px-1 {
|
|
1478
|
+
padding-left: 0.25rem;
|
|
1479
|
+
padding-right: 0.25rem;
|
|
1480
|
+
}
|
|
1481
|
+
|
|
1204
1482
|
.px-3 {
|
|
1205
1483
|
padding-left: 0.75rem;
|
|
1206
1484
|
padding-right: 0.75rem;
|
|
@@ -1253,10 +1531,18 @@ video {
|
|
|
1253
1531
|
padding-inline-end: 48px;
|
|
1254
1532
|
}
|
|
1255
1533
|
|
|
1534
|
+
.text-left {
|
|
1535
|
+
text-align: left;
|
|
1536
|
+
}
|
|
1537
|
+
|
|
1256
1538
|
.text-center {
|
|
1257
1539
|
text-align: center;
|
|
1258
1540
|
}
|
|
1259
1541
|
|
|
1542
|
+
.text-right {
|
|
1543
|
+
text-align: right;
|
|
1544
|
+
}
|
|
1545
|
+
|
|
1260
1546
|
.align-middle {
|
|
1261
1547
|
vertical-align: middle;
|
|
1262
1548
|
}
|
|
@@ -1413,15 +1699,27 @@ video {
|
|
|
1413
1699
|
text-transform: capitalize;
|
|
1414
1700
|
}
|
|
1415
1701
|
|
|
1702
|
+
.leading-none {
|
|
1703
|
+
line-height: 1;
|
|
1704
|
+
}
|
|
1705
|
+
|
|
1416
1706
|
.tracking-\[\.02857em\] {
|
|
1417
1707
|
letter-spacing: .02857em;
|
|
1418
1708
|
}
|
|
1419
1709
|
|
|
1710
|
+
.tracking-tight {
|
|
1711
|
+
letter-spacing: -0.025em;
|
|
1712
|
+
}
|
|
1713
|
+
|
|
1420
1714
|
.text-black {
|
|
1421
1715
|
--tw-text-opacity: 1;
|
|
1422
1716
|
color: rgb(0 0 0 / var(--tw-text-opacity));
|
|
1423
1717
|
}
|
|
1424
1718
|
|
|
1719
|
+
.text-current {
|
|
1720
|
+
color: currentColor;
|
|
1721
|
+
}
|
|
1722
|
+
|
|
1425
1723
|
.text-error {
|
|
1426
1724
|
--tw-text-opacity: 1;
|
|
1427
1725
|
color: rgb(var(--error-100) / var(--tw-text-opacity));
|
|
@@ -1467,6 +1765,11 @@ video {
|
|
|
1467
1765
|
color: rgb(var(--primary-foreground) / var(--tw-text-opacity));
|
|
1468
1766
|
}
|
|
1469
1767
|
|
|
1768
|
+
.text-secondary-110 {
|
|
1769
|
+
--tw-text-opacity: 1;
|
|
1770
|
+
color: rgb(var(--secondary-110) / var(--tw-text-opacity));
|
|
1771
|
+
}
|
|
1772
|
+
|
|
1470
1773
|
.text-secondary-130 {
|
|
1471
1774
|
--tw-text-opacity: 1;
|
|
1472
1775
|
color: rgb(var(--secondary-130) / var(--tw-text-opacity));
|
|
@@ -1497,6 +1800,21 @@ video {
|
|
|
1497
1800
|
color: rgb(var(--tertiary-foreground) / var(--tw-text-opacity));
|
|
1498
1801
|
}
|
|
1499
1802
|
|
|
1803
|
+
.text-textcolor-dark {
|
|
1804
|
+
--tw-text-opacity: 1;
|
|
1805
|
+
color: rgb(var(--text-default-dark) / var(--tw-text-opacity));
|
|
1806
|
+
}
|
|
1807
|
+
|
|
1808
|
+
.text-textcolor-grey-dark {
|
|
1809
|
+
--tw-text-opacity: 1;
|
|
1810
|
+
color: rgb(var(--text-grey-dark) / var(--tw-text-opacity));
|
|
1811
|
+
}
|
|
1812
|
+
|
|
1813
|
+
.text-textcolor-grey-light {
|
|
1814
|
+
--tw-text-opacity: 1;
|
|
1815
|
+
color: rgb(var(--text-grey-light) / var(--tw-text-opacity));
|
|
1816
|
+
}
|
|
1817
|
+
|
|
1500
1818
|
.text-warning {
|
|
1501
1819
|
--tw-text-opacity: 1;
|
|
1502
1820
|
color: rgb(var(--warning-default) / var(--tw-text-opacity));
|
|
@@ -1524,6 +1842,16 @@ video {
|
|
|
1524
1842
|
text-underline-offset: 4px;
|
|
1525
1843
|
}
|
|
1526
1844
|
|
|
1845
|
+
.opacity-70 {
|
|
1846
|
+
opacity: 0.7;
|
|
1847
|
+
}
|
|
1848
|
+
|
|
1849
|
+
.shadow-lg {
|
|
1850
|
+
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
1851
|
+
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
1852
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1853
|
+
}
|
|
1854
|
+
|
|
1527
1855
|
.shadow-md {
|
|
1528
1856
|
--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
1529
1857
|
--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
|
|
@@ -1539,6 +1867,12 @@ video {
|
|
|
1539
1867
|
outline-style: solid;
|
|
1540
1868
|
}
|
|
1541
1869
|
|
|
1870
|
+
.ring {
|
|
1871
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1872
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1873
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1874
|
+
}
|
|
1875
|
+
|
|
1542
1876
|
.ring-1 {
|
|
1543
1877
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1544
1878
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
@@ -1564,6 +1898,10 @@ video {
|
|
|
1564
1898
|
--tw-ring-color: rgb(var(--input-disabled-stroke-color) / var(--tw-ring-opacity));
|
|
1565
1899
|
}
|
|
1566
1900
|
|
|
1901
|
+
.ring-offset-background {
|
|
1902
|
+
--tw-ring-offset-color: hsl(var(--background));
|
|
1903
|
+
}
|
|
1904
|
+
|
|
1567
1905
|
.filter {
|
|
1568
1906
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
1569
1907
|
}
|
|
@@ -1580,6 +1918,16 @@ video {
|
|
|
1580
1918
|
transition-duration: 150ms;
|
|
1581
1919
|
}
|
|
1582
1920
|
|
|
1921
|
+
.transition-opacity {
|
|
1922
|
+
transition-property: opacity;
|
|
1923
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1924
|
+
transition-duration: 150ms;
|
|
1925
|
+
}
|
|
1926
|
+
|
|
1927
|
+
.duration-200 {
|
|
1928
|
+
transition-duration: 200ms;
|
|
1929
|
+
}
|
|
1930
|
+
|
|
1583
1931
|
.duration-300 {
|
|
1584
1932
|
transition-duration: 300ms;
|
|
1585
1933
|
}
|
|
@@ -1588,6 +1936,10 @@ video {
|
|
|
1588
1936
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1589
1937
|
}
|
|
1590
1938
|
|
|
1939
|
+
.ease-out {
|
|
1940
|
+
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
1941
|
+
}
|
|
1942
|
+
|
|
1591
1943
|
.typography-h1 {
|
|
1592
1944
|
font-size: 64px;
|
|
1593
1945
|
line-height: 80px;
|
|
@@ -1714,6 +2066,23 @@ video {
|
|
|
1714
2066
|
font-weight: 400;
|
|
1715
2067
|
}
|
|
1716
2068
|
|
|
2069
|
+
.file\:border-0::file-selector-button {
|
|
2070
|
+
border-width: 0px;
|
|
2071
|
+
}
|
|
2072
|
+
|
|
2073
|
+
.file\:bg-transparent::file-selector-button {
|
|
2074
|
+
background-color: transparent;
|
|
2075
|
+
}
|
|
2076
|
+
|
|
2077
|
+
.file\:text-sm::file-selector-button {
|
|
2078
|
+
font-size: 0.875rem;
|
|
2079
|
+
line-height: 1.25rem;
|
|
2080
|
+
}
|
|
2081
|
+
|
|
2082
|
+
.file\:font-medium::file-selector-button {
|
|
2083
|
+
font-weight: 500;
|
|
2084
|
+
}
|
|
2085
|
+
|
|
1717
2086
|
.placeholder\:text-input-text-disabled::-moz-placeholder {
|
|
1718
2087
|
--tw-text-opacity: 1;
|
|
1719
2088
|
color: rgb(var(--input-disabled-text-color) / var(--tw-text-opacity));
|
|
@@ -1803,10 +2172,19 @@ video {
|
|
|
1803
2172
|
fill: rgb(var(--input-default-text-color) / 1);
|
|
1804
2173
|
}
|
|
1805
2174
|
|
|
2175
|
+
.hover\:text-textcolor-dark:hover {
|
|
2176
|
+
--tw-text-opacity: 1;
|
|
2177
|
+
color: rgb(var(--text-default-dark) / var(--tw-text-opacity));
|
|
2178
|
+
}
|
|
2179
|
+
|
|
1806
2180
|
.hover\:text-opacity-80:hover {
|
|
1807
2181
|
--tw-text-opacity: 0.8;
|
|
1808
2182
|
}
|
|
1809
2183
|
|
|
2184
|
+
.hover\:opacity-100:hover {
|
|
2185
|
+
opacity: 1;
|
|
2186
|
+
}
|
|
2187
|
+
|
|
1810
2188
|
.focus\:border-input-stroke:focus {
|
|
1811
2189
|
--tw-border-opacity: 1;
|
|
1812
2190
|
border-color: rgb(var(--input-default-stroke-color) / var(--tw-border-opacity));
|
|
@@ -1824,12 +2202,23 @@ video {
|
|
|
1824
2202
|
padding-inline-end: 2rem;
|
|
1825
2203
|
}
|
|
1826
2204
|
|
|
2205
|
+
.focus\:outline-none:focus {
|
|
2206
|
+
outline: 2px solid transparent;
|
|
2207
|
+
outline-offset: 2px;
|
|
2208
|
+
}
|
|
2209
|
+
|
|
1827
2210
|
.focus\:ring-1:focus {
|
|
1828
2211
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1829
2212
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1830
2213
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1831
2214
|
}
|
|
1832
2215
|
|
|
2216
|
+
.focus\:ring-2:focus {
|
|
2217
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2218
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
2219
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
2220
|
+
}
|
|
2221
|
+
|
|
1833
2222
|
.focus\:ring-inset:focus {
|
|
1834
2223
|
--tw-ring-inset: inset;
|
|
1835
2224
|
}
|
|
@@ -1844,12 +2233,60 @@ video {
|
|
|
1844
2233
|
--tw-ring-color: rgb(var(--input-active-stroke-color) / var(--tw-ring-opacity));
|
|
1845
2234
|
}
|
|
1846
2235
|
|
|
2236
|
+
.focus\:ring-ring:focus {
|
|
2237
|
+
--tw-ring-color: hsl(var(--ring));
|
|
2238
|
+
}
|
|
2239
|
+
|
|
2240
|
+
.focus\:ring-offset-2:focus {
|
|
2241
|
+
--tw-ring-offset-width: 2px;
|
|
2242
|
+
}
|
|
2243
|
+
|
|
2244
|
+
.focus-visible\:outline-none:focus-visible {
|
|
2245
|
+
outline: 2px solid transparent;
|
|
2246
|
+
outline-offset: 2px;
|
|
2247
|
+
}
|
|
2248
|
+
|
|
2249
|
+
.focus-visible\:ring-2:focus-visible {
|
|
2250
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2251
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
2252
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
2253
|
+
}
|
|
2254
|
+
|
|
2255
|
+
.focus-visible\:ring-ring:focus-visible {
|
|
2256
|
+
--tw-ring-color: hsl(var(--ring));
|
|
2257
|
+
}
|
|
2258
|
+
|
|
2259
|
+
.focus-visible\:ring-offset-2:focus-visible {
|
|
2260
|
+
--tw-ring-offset-width: 2px;
|
|
2261
|
+
}
|
|
2262
|
+
|
|
1847
2263
|
.active\:scale-\[98\%\]:active {
|
|
1848
2264
|
--tw-scale-x: 98%;
|
|
1849
2265
|
--tw-scale-y: 98%;
|
|
1850
2266
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1851
2267
|
}
|
|
1852
2268
|
|
|
2269
|
+
.disabled\:pointer-events-none:disabled {
|
|
2270
|
+
pointer-events: none;
|
|
2271
|
+
}
|
|
2272
|
+
|
|
2273
|
+
.disabled\:cursor-not-allowed:disabled {
|
|
2274
|
+
cursor: not-allowed;
|
|
2275
|
+
}
|
|
2276
|
+
|
|
2277
|
+
.disabled\:border-secondary-110:disabled {
|
|
2278
|
+
--tw-border-opacity: 1;
|
|
2279
|
+
border-color: rgb(var(--secondary-110) / var(--tw-border-opacity));
|
|
2280
|
+
}
|
|
2281
|
+
|
|
2282
|
+
.disabled\:fill-secondary-110:disabled {
|
|
2283
|
+
fill: rgb(var(--secondary-110) / 1);
|
|
2284
|
+
}
|
|
2285
|
+
|
|
2286
|
+
.disabled\:opacity-50:disabled {
|
|
2287
|
+
opacity: 0.5;
|
|
2288
|
+
}
|
|
2289
|
+
|
|
1853
2290
|
.peer:-moz-placeholder-shown ~ .peer-placeholder-shown\:top-2 {
|
|
1854
2291
|
top: 0.5rem;
|
|
1855
2292
|
}
|
|
@@ -1944,6 +2381,14 @@ video {
|
|
|
1944
2381
|
font-weight: 400;
|
|
1945
2382
|
}
|
|
1946
2383
|
|
|
2384
|
+
.peer:disabled ~ .peer-disabled\:cursor-not-allowed {
|
|
2385
|
+
cursor: not-allowed;
|
|
2386
|
+
}
|
|
2387
|
+
|
|
2388
|
+
.peer:disabled ~ .peer-disabled\:opacity-70 {
|
|
2389
|
+
opacity: 0.7;
|
|
2390
|
+
}
|
|
2391
|
+
|
|
1947
2392
|
.aria-disabled\:pointer-events-none[aria-disabled="true"] {
|
|
1948
2393
|
pointer-events: none;
|
|
1949
2394
|
}
|
|
@@ -1954,4 +2399,67 @@ video {
|
|
|
1954
2399
|
|
|
1955
2400
|
.aria-disabled\:opacity-50[aria-disabled="true"] {
|
|
1956
2401
|
opacity: 0.5;
|
|
2402
|
+
}
|
|
2403
|
+
|
|
2404
|
+
.data-\[state\=checked\]\:border-primary[data-state=checked] {
|
|
2405
|
+
--tw-border-opacity: 1;
|
|
2406
|
+
border-color: rgb(var(--primary-default) / var(--tw-border-opacity));
|
|
2407
|
+
}
|
|
2408
|
+
|
|
2409
|
+
.data-\[state\=checked\]\:bg-primary[data-state=checked] {
|
|
2410
|
+
--tw-bg-opacity: 1;
|
|
2411
|
+
background-color: rgb(var(--primary-default) / var(--tw-bg-opacity));
|
|
2412
|
+
}
|
|
2413
|
+
|
|
2414
|
+
.data-\[state\=checked\]\:text-primary-foreground[data-state=checked] {
|
|
2415
|
+
--tw-text-opacity: 1;
|
|
2416
|
+
color: rgb(var(--primary-foreground) / var(--tw-text-opacity));
|
|
2417
|
+
}
|
|
2418
|
+
|
|
2419
|
+
@media (min-width: 640px) {
|
|
2420
|
+
.sm\:mt-0 {
|
|
2421
|
+
margin-top: 0px;
|
|
2422
|
+
}
|
|
2423
|
+
|
|
2424
|
+
.sm\:max-w-\[425px\] {
|
|
2425
|
+
max-width: 425px;
|
|
2426
|
+
}
|
|
2427
|
+
|
|
2428
|
+
.sm\:flex-row {
|
|
2429
|
+
flex-direction: row;
|
|
2430
|
+
}
|
|
2431
|
+
|
|
2432
|
+
.sm\:justify-end {
|
|
2433
|
+
justify-content: flex-end;
|
|
2434
|
+
}
|
|
2435
|
+
|
|
2436
|
+
.sm\:space-x-2 > :not([hidden]) ~ :not([hidden]) {
|
|
2437
|
+
--tw-space-x-reverse: 0;
|
|
2438
|
+
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
2439
|
+
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
2440
|
+
}
|
|
2441
|
+
|
|
2442
|
+
.sm\:rounded-\[var\(--popup-rounded\)\] {
|
|
2443
|
+
border-radius: var(--popup-rounded);
|
|
2444
|
+
}
|
|
2445
|
+
|
|
2446
|
+
.sm\:text-left {
|
|
2447
|
+
text-align: left;
|
|
2448
|
+
}
|
|
2449
|
+
}
|
|
2450
|
+
|
|
2451
|
+
.\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0:has([role=checkbox]) {
|
|
2452
|
+
padding-right: 0px;
|
|
2453
|
+
}
|
|
2454
|
+
|
|
2455
|
+
.\[\&\>tr\]\:last\:border-b-0:last-child>tr {
|
|
2456
|
+
border-bottom-width: 0px;
|
|
2457
|
+
}
|
|
2458
|
+
|
|
2459
|
+
.\[\&_tr\:last-child\]\:border-0 tr:last-child {
|
|
2460
|
+
border-width: 0px;
|
|
2461
|
+
}
|
|
2462
|
+
|
|
2463
|
+
.\[\&_tr\]\:border-b tr {
|
|
2464
|
+
border-bottom-width: 1px;
|
|
1957
2465
|
}
|