@rovula/ui 0.0.13 → 0.0.15
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 +227 -16
- package/dist/cjs/bundle.js +3 -3
- package/dist/cjs/bundle.js.map +1 -1
- package/dist/cjs/types/components/ActionButton/ActionButton.d.ts +20 -0
- package/dist/cjs/types/components/ActionButton/ActionButton.stories.d.ts +311 -0
- package/dist/cjs/types/components/ActionButton/ActionButton.styles.d.ts +6 -0
- package/dist/cjs/types/components/Avatar/Avatar.d.ts +31 -0
- package/dist/cjs/types/components/Avatar/Avatar.stories.d.ts +64 -0
- package/dist/cjs/types/components/Avatar/Avatar.styles.d.ts +4 -0
- package/dist/cjs/types/components/Avatar/AvatarBase.d.ts +6 -0
- package/dist/cjs/types/components/Avatar/AvatarGroup.d.ts +11 -0
- package/dist/cjs/types/components/Avatar/AvatarGroup.stories.d.ts +31 -0
- package/dist/cjs/types/components/Avatar/index.d.ts +3 -0
- package/dist/cjs/types/components/Input/Input.d.ts +21 -4
- package/dist/cjs/types/components/Input/Input.stories.d.ts +340 -22
- package/dist/cjs/types/components/Input/Input.styles.d.ts +9 -0
- package/dist/cjs/types/components/Label/Label.d.ts +6 -1
- package/dist/cjs/types/components/Label/Label.stories.d.ts +10 -1
- package/dist/cjs/types/components/Label/Label.styles.d.ts +6 -0
- package/dist/cjs/types/components/Navbar/Navbar.d.ts +12 -0
- package/dist/cjs/types/components/Navbar/Navbar.stories.d.ts +27 -0
- package/dist/cjs/types/components/Navbar/index.d.ts +2 -0
- package/dist/cjs/types/components/Search/Search.d.ts +2 -0
- package/dist/cjs/types/components/Search/Search.stories.d.ts +21 -0
- package/dist/cjs/types/components/ThemeToggle.d.ts +2 -0
- package/dist/cjs/types/index.d.ts +5 -0
- package/dist/components/ActionButton/ActionButton.js +38 -0
- package/dist/components/ActionButton/ActionButton.stories.js +45 -0
- package/dist/components/ActionButton/ActionButton.styles.js +71 -0
- package/dist/components/Avatar/Avatar.js +22 -0
- package/dist/components/Avatar/Avatar.stories.js +47 -0
- package/dist/components/Avatar/Avatar.styles.js +23 -0
- package/dist/components/Avatar/AvatarBase.js +43 -0
- package/dist/components/Avatar/AvatarGroup.js +21 -0
- package/dist/components/Avatar/AvatarGroup.stories.js +47 -0
- package/dist/components/Avatar/index.js +3 -0
- package/dist/components/Button/Button.styles.js +6 -6
- package/dist/components/Input/Input.js +5 -4
- package/dist/components/Input/Input.stories.js +2 -4
- package/dist/components/Input/Input.styles.js +45 -0
- package/dist/components/Label/Label.js +7 -3
- package/dist/components/Label/Label.styles.js +57 -0
- package/dist/components/Navbar/Navbar.js +9 -0
- package/dist/components/Navbar/Navbar.stories.js +41 -0
- package/dist/components/Navbar/index.js +2 -0
- package/dist/components/Search/Search.js +19 -0
- package/dist/components/Search/Search.stories.js +36 -0
- package/dist/components/Text/Text.js +2 -1
- package/dist/components/ThemeToggle.js +17 -0
- package/dist/esm/bundle.css +227 -16
- package/dist/esm/bundle.js +3 -3
- package/dist/esm/bundle.js.map +1 -1
- package/dist/esm/types/components/ActionButton/ActionButton.d.ts +20 -0
- package/dist/esm/types/components/ActionButton/ActionButton.stories.d.ts +311 -0
- package/dist/esm/types/components/ActionButton/ActionButton.styles.d.ts +6 -0
- package/dist/esm/types/components/Avatar/Avatar.d.ts +31 -0
- package/dist/esm/types/components/Avatar/Avatar.stories.d.ts +64 -0
- package/dist/esm/types/components/Avatar/Avatar.styles.d.ts +4 -0
- package/dist/esm/types/components/Avatar/AvatarBase.d.ts +6 -0
- package/dist/esm/types/components/Avatar/AvatarGroup.d.ts +11 -0
- package/dist/esm/types/components/Avatar/AvatarGroup.stories.d.ts +31 -0
- package/dist/esm/types/components/Avatar/index.d.ts +3 -0
- package/dist/esm/types/components/Input/Input.d.ts +21 -4
- package/dist/esm/types/components/Input/Input.stories.d.ts +340 -22
- package/dist/esm/types/components/Input/Input.styles.d.ts +9 -0
- package/dist/esm/types/components/Label/Label.d.ts +6 -1
- package/dist/esm/types/components/Label/Label.stories.d.ts +10 -1
- package/dist/esm/types/components/Label/Label.styles.d.ts +6 -0
- package/dist/esm/types/components/Navbar/Navbar.d.ts +12 -0
- package/dist/esm/types/components/Navbar/Navbar.stories.d.ts +27 -0
- package/dist/esm/types/components/Navbar/index.d.ts +2 -0
- package/dist/esm/types/components/Search/Search.d.ts +2 -0
- package/dist/esm/types/components/Search/Search.stories.d.ts +21 -0
- package/dist/esm/types/components/ThemeToggle.d.ts +2 -0
- package/dist/esm/types/index.d.ts +5 -0
- package/dist/index.d.ts +73 -11
- package/dist/index.js +2 -0
- package/dist/src/theme/global.css +290 -21
- package/dist/theme/global.css +11 -0
- package/dist/theme/presets/colors.js +28 -0
- package/package.json +2 -1
- package/src/components/ActionButton/ActionButton.stories.tsx +176 -0
- package/src/components/ActionButton/ActionButton.styles.ts +79 -0
- package/src/components/ActionButton/ActionButton.tsx +42 -0
- package/src/components/Avatar/Avatar.stories.tsx +107 -0
- package/src/components/Avatar/Avatar.styles.ts +28 -0
- package/src/components/Avatar/Avatar.tsx +88 -0
- package/src/components/Avatar/AvatarBase.tsx +50 -0
- package/src/components/Avatar/AvatarGroup.stories.tsx +77 -0
- package/src/components/Avatar/AvatarGroup.tsx +55 -0
- package/src/components/Avatar/index.ts +4 -0
- package/src/components/Button/Button.styles.ts +6 -6
- package/src/components/Input/Input.stories.tsx +8 -6
- package/src/components/Input/Input.styles.tsx +51 -0
- package/src/components/Input/Input.tsx +30 -6
- package/src/components/Label/Label.styles.ts +61 -0
- package/src/components/Label/Label.tsx +13 -7
- package/src/components/Navbar/Navbar.stories.tsx +86 -0
- package/src/components/Navbar/Navbar.tsx +56 -0
- package/src/components/Navbar/index.ts +3 -0
- package/src/components/Search/Search.stories.tsx +44 -0
- package/src/components/Search/Search.tsx +25 -0
- package/src/components/Text/Text.tsx +2 -1
- package/src/components/ThemeToggle.tsx +19 -0
- package/src/index.ts +5 -0
- package/src/theme/global.css +11 -0
- package/src/theme/presets/colors.js +28 -0
package/dist/cjs/bundle.css
CHANGED
|
@@ -517,6 +517,10 @@ video {
|
|
|
517
517
|
--error-default: var(--error-100);
|
|
518
518
|
--error-foreground: var(--white);
|
|
519
519
|
|
|
520
|
+
--main-transparent-primary: 1 1 68;
|
|
521
|
+
--main-transparent-secondary: 234 241 255;
|
|
522
|
+
--main-transparent-tertiary: 47 78 255;
|
|
523
|
+
|
|
520
524
|
/* Button */
|
|
521
525
|
--btn-rounded-sm: 10px;
|
|
522
526
|
--btn-rounded-md: 12px;
|
|
@@ -551,6 +555,13 @@ video {
|
|
|
551
555
|
--popup-overlay: 0 0 0;
|
|
552
556
|
--popup-overlay-alpha: 0.48;
|
|
553
557
|
--popup-rounded: 24px;
|
|
558
|
+
|
|
559
|
+
/* Navbar */
|
|
560
|
+
--navbar-height: 58px;
|
|
561
|
+
--navbar-bg-color: var(--primary-default);
|
|
562
|
+
--navbar-text-color: var(--primary-foreground);
|
|
563
|
+
--navbar-border-color: var(--primary-foreground);
|
|
564
|
+
--navbar-gap: 16px;
|
|
554
565
|
|
|
555
566
|
/* TODO for shadcn, wait for refactor */
|
|
556
567
|
/* --background: 0 0% 100%; */
|
|
@@ -725,6 +736,9 @@ video {
|
|
|
725
736
|
.pointer-events-none {
|
|
726
737
|
pointer-events: none;
|
|
727
738
|
}
|
|
739
|
+
.static {
|
|
740
|
+
position: static;
|
|
741
|
+
}
|
|
728
742
|
.fixed {
|
|
729
743
|
position: fixed;
|
|
730
744
|
}
|
|
@@ -774,6 +788,9 @@ video {
|
|
|
774
788
|
.top-\[50\%\] {
|
|
775
789
|
top: 50%;
|
|
776
790
|
}
|
|
791
|
+
.z-0 {
|
|
792
|
+
z-index: 0;
|
|
793
|
+
}
|
|
777
794
|
.z-10 {
|
|
778
795
|
z-index: 10;
|
|
779
796
|
}
|
|
@@ -876,15 +893,58 @@ video {
|
|
|
876
893
|
.h-4 {
|
|
877
894
|
height: 1rem;
|
|
878
895
|
}
|
|
896
|
+
.h-\[18px\] {
|
|
897
|
+
height: 18px;
|
|
898
|
+
}
|
|
899
|
+
.h-\[24px\] {
|
|
900
|
+
height: 24px;
|
|
901
|
+
}
|
|
902
|
+
.h-\[30px\] {
|
|
903
|
+
height: 30px;
|
|
904
|
+
}
|
|
905
|
+
.h-\[32px\] {
|
|
906
|
+
height: 32px;
|
|
907
|
+
}
|
|
908
|
+
.h-\[38px\] {
|
|
909
|
+
height: 38px;
|
|
910
|
+
}
|
|
911
|
+
.h-\[40px\] {
|
|
912
|
+
height: 40px;
|
|
913
|
+
}
|
|
914
|
+
.h-\[48px\] {
|
|
915
|
+
height: 48px;
|
|
916
|
+
}
|
|
879
917
|
.h-\[54px\] {
|
|
880
918
|
height: 54px;
|
|
881
919
|
}
|
|
920
|
+
.h-\[56px\] {
|
|
921
|
+
height: 56px;
|
|
922
|
+
}
|
|
923
|
+
.h-\[64px\] {
|
|
924
|
+
height: 64px;
|
|
925
|
+
}
|
|
926
|
+
.h-\[var\(--navbar-height\)\] {
|
|
927
|
+
height: var(--navbar-height);
|
|
928
|
+
}
|
|
929
|
+
.h-fit {
|
|
930
|
+
height: -moz-fit-content;
|
|
931
|
+
height: fit-content;
|
|
932
|
+
}
|
|
882
933
|
.h-full {
|
|
883
934
|
height: 100%;
|
|
884
935
|
}
|
|
936
|
+
.h-screen {
|
|
937
|
+
height: 100vh;
|
|
938
|
+
}
|
|
885
939
|
.max-h-60 {
|
|
886
940
|
max-height: 15rem;
|
|
887
941
|
}
|
|
942
|
+
.w-1\/2 {
|
|
943
|
+
width: 50%;
|
|
944
|
+
}
|
|
945
|
+
.w-10 {
|
|
946
|
+
width: 2.5rem;
|
|
947
|
+
}
|
|
888
948
|
.w-4 {
|
|
889
949
|
width: 1rem;
|
|
890
950
|
}
|
|
@@ -894,12 +954,45 @@ video {
|
|
|
894
954
|
.w-\[100px\] {
|
|
895
955
|
width: 100px;
|
|
896
956
|
}
|
|
957
|
+
.w-\[18px\] {
|
|
958
|
+
width: 18px;
|
|
959
|
+
}
|
|
897
960
|
.w-\[200px\] {
|
|
898
961
|
width: 200px;
|
|
899
962
|
}
|
|
963
|
+
.w-\[20px\] {
|
|
964
|
+
width: 20px;
|
|
965
|
+
}
|
|
966
|
+
.w-\[24px\] {
|
|
967
|
+
width: 24px;
|
|
968
|
+
}
|
|
969
|
+
.w-\[30px\] {
|
|
970
|
+
width: 30px;
|
|
971
|
+
}
|
|
972
|
+
.w-\[32px\] {
|
|
973
|
+
width: 32px;
|
|
974
|
+
}
|
|
975
|
+
.w-\[38px\] {
|
|
976
|
+
width: 38px;
|
|
977
|
+
}
|
|
900
978
|
.w-\[400px\] {
|
|
901
979
|
width: 400px;
|
|
902
980
|
}
|
|
981
|
+
.w-\[40px\] {
|
|
982
|
+
width: 40px;
|
|
983
|
+
}
|
|
984
|
+
.w-\[46px\] {
|
|
985
|
+
width: 46px;
|
|
986
|
+
}
|
|
987
|
+
.w-\[48px\] {
|
|
988
|
+
width: 48px;
|
|
989
|
+
}
|
|
990
|
+
.w-\[56px\] {
|
|
991
|
+
width: 56px;
|
|
992
|
+
}
|
|
993
|
+
.w-\[64px\] {
|
|
994
|
+
width: 64px;
|
|
995
|
+
}
|
|
903
996
|
.w-auto {
|
|
904
997
|
width: auto;
|
|
905
998
|
}
|
|
@@ -915,6 +1008,9 @@ video {
|
|
|
915
1008
|
.flex-1 {
|
|
916
1009
|
flex: 1 1 0%;
|
|
917
1010
|
}
|
|
1011
|
+
.flex-shrink-0 {
|
|
1012
|
+
flex-shrink: 0;
|
|
1013
|
+
}
|
|
918
1014
|
.shrink-0 {
|
|
919
1015
|
flex-shrink: 0;
|
|
920
1016
|
}
|
|
@@ -964,9 +1060,15 @@ video {
|
|
|
964
1060
|
.flex-col-reverse {
|
|
965
1061
|
flex-direction: column-reverse;
|
|
966
1062
|
}
|
|
1063
|
+
.flex-wrap {
|
|
1064
|
+
flex-wrap: wrap;
|
|
1065
|
+
}
|
|
967
1066
|
.items-center {
|
|
968
1067
|
align-items: center;
|
|
969
1068
|
}
|
|
1069
|
+
.justify-end {
|
|
1070
|
+
justify-content: flex-end;
|
|
1071
|
+
}
|
|
970
1072
|
.justify-center {
|
|
971
1073
|
justify-content: center;
|
|
972
1074
|
}
|
|
@@ -995,12 +1097,21 @@ video {
|
|
|
995
1097
|
-moz-column-gap: 2rem;
|
|
996
1098
|
column-gap: 2rem;
|
|
997
1099
|
}
|
|
1100
|
+
.gap-x-\[var\(--navbar-gap\)\] {
|
|
1101
|
+
-moz-column-gap: var(--navbar-gap);
|
|
1102
|
+
column-gap: var(--navbar-gap);
|
|
1103
|
+
}
|
|
998
1104
|
.gap-y-4 {
|
|
999
1105
|
row-gap: 1rem;
|
|
1000
1106
|
}
|
|
1001
1107
|
.gap-y-6 {
|
|
1002
1108
|
row-gap: 1.5rem;
|
|
1003
1109
|
}
|
|
1110
|
+
.-space-x-2 > :not([hidden]) ~ :not([hidden]) {
|
|
1111
|
+
--tw-space-x-reverse: 0;
|
|
1112
|
+
margin-right: calc(-0.5rem * var(--tw-space-x-reverse));
|
|
1113
|
+
margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1114
|
+
}
|
|
1004
1115
|
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
|
|
1005
1116
|
--tw-space-x-reverse: 0;
|
|
1006
1117
|
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
@@ -1034,6 +1145,11 @@ video {
|
|
|
1034
1145
|
.overflow-y-scroll {
|
|
1035
1146
|
overflow-y: scroll;
|
|
1036
1147
|
}
|
|
1148
|
+
.truncate {
|
|
1149
|
+
overflow: hidden;
|
|
1150
|
+
text-overflow: ellipsis;
|
|
1151
|
+
white-space: nowrap;
|
|
1152
|
+
}
|
|
1037
1153
|
.whitespace-nowrap {
|
|
1038
1154
|
white-space: nowrap;
|
|
1039
1155
|
}
|
|
@@ -1085,6 +1201,9 @@ video {
|
|
|
1085
1201
|
.border-t {
|
|
1086
1202
|
border-top-width: 1px;
|
|
1087
1203
|
}
|
|
1204
|
+
.border-solid {
|
|
1205
|
+
border-style: solid;
|
|
1206
|
+
}
|
|
1088
1207
|
.border-error {
|
|
1089
1208
|
--tw-border-opacity: 1;
|
|
1090
1209
|
border-color: rgb(var(--error-100) / var(--tw-border-opacity));
|
|
@@ -1093,6 +1212,9 @@ video {
|
|
|
1093
1212
|
--tw-border-opacity: 1;
|
|
1094
1213
|
border-color: rgb(209 213 219 / var(--tw-border-opacity));
|
|
1095
1214
|
}
|
|
1215
|
+
.border-grey2-500\/\[\.32\] {
|
|
1216
|
+
border-color: rgb(var(--grey2-500) / .32);
|
|
1217
|
+
}
|
|
1096
1218
|
.border-info {
|
|
1097
1219
|
--tw-border-opacity: 1;
|
|
1098
1220
|
border-color: rgb(var(--info-default) / var(--tw-border-opacity));
|
|
@@ -1101,6 +1223,12 @@ video {
|
|
|
1101
1223
|
--tw-border-opacity: 1;
|
|
1102
1224
|
border-color: rgb(var(--input-default-stroke-color) / var(--tw-border-opacity));
|
|
1103
1225
|
}
|
|
1226
|
+
.border-main-transparent-primary-48 {
|
|
1227
|
+
border-color: rgb(var(--main-transparent-primary) / 0.48);
|
|
1228
|
+
}
|
|
1229
|
+
.border-main-transparent-secondary-32 {
|
|
1230
|
+
border-color: rgb(var(--main-transparent-secondary) / 0.32);
|
|
1231
|
+
}
|
|
1104
1232
|
.border-primary {
|
|
1105
1233
|
--tw-border-opacity: 1;
|
|
1106
1234
|
border-color: rgb(var(--primary-default) / var(--tw-border-opacity));
|
|
@@ -1140,9 +1268,19 @@ video {
|
|
|
1140
1268
|
--tw-border-opacity: 1;
|
|
1141
1269
|
border-color: rgb(var(--warning-default) / var(--tw-border-opacity));
|
|
1142
1270
|
}
|
|
1271
|
+
.border-b-\[rgb\(var\(--navbar-border-color\)\)\] {
|
|
1272
|
+
border-bottom-color: rgb(var(--navbar-border-color));
|
|
1273
|
+
}
|
|
1274
|
+
.bg-\[rgb\(var\(--navbar-bg-color\)\)\] {
|
|
1275
|
+
background-color: rgb(var(--navbar-bg-color));
|
|
1276
|
+
}
|
|
1143
1277
|
.bg-background {
|
|
1144
1278
|
background-color: hsl(var(--background));
|
|
1145
1279
|
}
|
|
1280
|
+
.bg-black {
|
|
1281
|
+
--tw-bg-opacity: 1;
|
|
1282
|
+
background-color: rgb(0 0 0 / var(--tw-bg-opacity));
|
|
1283
|
+
}
|
|
1146
1284
|
.bg-error {
|
|
1147
1285
|
--tw-bg-opacity: 1;
|
|
1148
1286
|
background-color: rgb(var(--error-100) / var(--tw-bg-opacity));
|
|
@@ -1155,6 +1293,14 @@ video {
|
|
|
1155
1293
|
--tw-bg-opacity: 1;
|
|
1156
1294
|
background-color: rgb(var(--grey2-300) / var(--tw-bg-opacity));
|
|
1157
1295
|
}
|
|
1296
|
+
.bg-grey2-500 {
|
|
1297
|
+
--tw-bg-opacity: 1;
|
|
1298
|
+
background-color: rgb(var(--grey2-500) / var(--tw-bg-opacity));
|
|
1299
|
+
}
|
|
1300
|
+
.bg-grey2-700 {
|
|
1301
|
+
--tw-bg-opacity: 1;
|
|
1302
|
+
background-color: rgb(var(--grey2-700) / var(--tw-bg-opacity));
|
|
1303
|
+
}
|
|
1158
1304
|
.bg-info {
|
|
1159
1305
|
--tw-bg-opacity: 1;
|
|
1160
1306
|
background-color: rgb(var(--info-default) / var(--tw-bg-opacity));
|
|
@@ -1174,6 +1320,10 @@ video {
|
|
|
1174
1320
|
--tw-bg-opacity: 1;
|
|
1175
1321
|
background-color: rgb(var(--primary-default) / var(--tw-bg-opacity));
|
|
1176
1322
|
}
|
|
1323
|
+
.bg-primary-120 {
|
|
1324
|
+
--tw-bg-opacity: 1;
|
|
1325
|
+
background-color: rgb(var(--primary-120) / var(--tw-bg-opacity));
|
|
1326
|
+
}
|
|
1177
1327
|
.bg-secondary-100 {
|
|
1178
1328
|
--tw-bg-opacity: 1;
|
|
1179
1329
|
background-color: rgb(var(--secondary-100) / var(--tw-bg-opacity));
|
|
@@ -1182,6 +1332,10 @@ video {
|
|
|
1182
1332
|
--tw-bg-opacity: 1;
|
|
1183
1333
|
background-color: rgb(var(--secondary-110) / var(--tw-bg-opacity));
|
|
1184
1334
|
}
|
|
1335
|
+
.bg-secondary-20 {
|
|
1336
|
+
--tw-bg-opacity: 1;
|
|
1337
|
+
background-color: rgb(var(--secondary-20) / var(--tw-bg-opacity));
|
|
1338
|
+
}
|
|
1185
1339
|
.bg-secondary-80 {
|
|
1186
1340
|
--tw-bg-opacity: 1;
|
|
1187
1341
|
background-color: rgb(var(--secondary-80) / var(--tw-bg-opacity));
|
|
@@ -1223,15 +1377,30 @@ video {
|
|
|
1223
1377
|
.fill-input-text-disabled {
|
|
1224
1378
|
fill: rgb(var(--input-disabled-text-color) / 1);
|
|
1225
1379
|
}
|
|
1380
|
+
.fill-red-500 {
|
|
1381
|
+
fill: #ef4444;
|
|
1382
|
+
}
|
|
1226
1383
|
.fill-secondary-110 {
|
|
1227
1384
|
fill: rgb(var(--secondary-110) / 1);
|
|
1228
1385
|
}
|
|
1386
|
+
.fill-secondary-70 {
|
|
1387
|
+
fill: rgb(var(--secondary-70) / 1);
|
|
1388
|
+
}
|
|
1389
|
+
.fill-secondary-foreground {
|
|
1390
|
+
fill: rgb(var(--secondary-foreground) / 1);
|
|
1391
|
+
}
|
|
1392
|
+
.fill-textcolor-medium {
|
|
1393
|
+
fill: rgb(var(--text-default-medium) / 1);
|
|
1394
|
+
}
|
|
1229
1395
|
.p-1 {
|
|
1230
1396
|
padding: 0.25rem;
|
|
1231
1397
|
}
|
|
1232
1398
|
.p-2 {
|
|
1233
1399
|
padding: 0.5rem;
|
|
1234
1400
|
}
|
|
1401
|
+
.p-20 {
|
|
1402
|
+
padding: 5rem;
|
|
1403
|
+
}
|
|
1235
1404
|
.p-4 {
|
|
1236
1405
|
padding: 1rem;
|
|
1237
1406
|
}
|
|
@@ -1244,10 +1413,17 @@ video {
|
|
|
1244
1413
|
.p-8 {
|
|
1245
1414
|
padding: 2rem;
|
|
1246
1415
|
}
|
|
1416
|
+
.p-\[2px\] {
|
|
1417
|
+
padding: 2px;
|
|
1418
|
+
}
|
|
1247
1419
|
.px-1 {
|
|
1248
1420
|
padding-left: 0.25rem;
|
|
1249
1421
|
padding-right: 0.25rem;
|
|
1250
1422
|
}
|
|
1423
|
+
.px-2 {
|
|
1424
|
+
padding-left: 0.5rem;
|
|
1425
|
+
padding-right: 0.5rem;
|
|
1426
|
+
}
|
|
1251
1427
|
.px-3 {
|
|
1252
1428
|
padding-left: 0.75rem;
|
|
1253
1429
|
padding-right: 0.75rem;
|
|
@@ -1260,6 +1436,10 @@ video {
|
|
|
1260
1436
|
padding-left: 1.5rem;
|
|
1261
1437
|
padding-right: 1.5rem;
|
|
1262
1438
|
}
|
|
1439
|
+
.px-8 {
|
|
1440
|
+
padding-left: 2rem;
|
|
1441
|
+
padding-right: 2rem;
|
|
1442
|
+
}
|
|
1263
1443
|
.px-\[2px\] {
|
|
1264
1444
|
padding-left: 2px;
|
|
1265
1445
|
padding-right: 2px;
|
|
@@ -1284,6 +1464,10 @@ video {
|
|
|
1284
1464
|
padding-top: 1rem;
|
|
1285
1465
|
padding-bottom: 1rem;
|
|
1286
1466
|
}
|
|
1467
|
+
.py-6 {
|
|
1468
|
+
padding-top: 1.5rem;
|
|
1469
|
+
padding-bottom: 1.5rem;
|
|
1470
|
+
}
|
|
1287
1471
|
.pe-\[30px\] {
|
|
1288
1472
|
padding-inline-end: 30px;
|
|
1289
1473
|
}
|
|
@@ -1421,6 +1605,10 @@ video {
|
|
|
1421
1605
|
line-height: 22px;
|
|
1422
1606
|
font-weight: 600;
|
|
1423
1607
|
}
|
|
1608
|
+
.text-xl {
|
|
1609
|
+
font-size: 1.25rem;
|
|
1610
|
+
line-height: 1.75rem;
|
|
1611
|
+
}
|
|
1424
1612
|
.font-bold {
|
|
1425
1613
|
font-weight: 700;
|
|
1426
1614
|
}
|
|
@@ -1439,6 +1627,9 @@ video {
|
|
|
1439
1627
|
.tracking-tight {
|
|
1440
1628
|
letter-spacing: -0.025em;
|
|
1441
1629
|
}
|
|
1630
|
+
.text-\[rgb\(var\(--navbar-text-color\)\)\] {
|
|
1631
|
+
color: rgb(var(--navbar-text-color));
|
|
1632
|
+
}
|
|
1442
1633
|
.text-black {
|
|
1443
1634
|
--tw-text-opacity: 1;
|
|
1444
1635
|
color: rgb(0 0 0 / var(--tw-text-opacity));
|
|
@@ -1458,6 +1649,9 @@ video {
|
|
|
1458
1649
|
--tw-text-opacity: 1;
|
|
1459
1650
|
color: rgb(243 244 246 / var(--tw-text-opacity));
|
|
1460
1651
|
}
|
|
1652
|
+
.text-grey2-500\/\[\.32\] {
|
|
1653
|
+
color: rgb(var(--grey2-500) / .32);
|
|
1654
|
+
}
|
|
1461
1655
|
.text-info {
|
|
1462
1656
|
--tw-text-opacity: 1;
|
|
1463
1657
|
color: rgb(var(--info-default) / var(--tw-text-opacity));
|
|
@@ -1494,6 +1688,10 @@ video {
|
|
|
1494
1688
|
--tw-text-opacity: 1;
|
|
1495
1689
|
color: rgb(var(--secondary-130) / var(--tw-text-opacity));
|
|
1496
1690
|
}
|
|
1691
|
+
.text-secondary-70 {
|
|
1692
|
+
--tw-text-opacity: 1;
|
|
1693
|
+
color: rgb(var(--secondary-70) / var(--tw-text-opacity));
|
|
1694
|
+
}
|
|
1497
1695
|
.text-secondary-foreground {
|
|
1498
1696
|
--tw-text-opacity: 1;
|
|
1499
1697
|
color: rgb(var(--secondary-foreground) / var(--tw-text-opacity));
|
|
@@ -1530,6 +1728,10 @@ video {
|
|
|
1530
1728
|
--tw-text-opacity: 1;
|
|
1531
1729
|
color: rgb(var(--text-grey-medium) / var(--tw-text-opacity));
|
|
1532
1730
|
}
|
|
1731
|
+
.text-textcolor-medium {
|
|
1732
|
+
--tw-text-opacity: 1;
|
|
1733
|
+
color: rgb(var(--text-default-medium) / var(--tw-text-opacity));
|
|
1734
|
+
}
|
|
1533
1735
|
.text-warning {
|
|
1534
1736
|
--tw-text-opacity: 1;
|
|
1535
1737
|
color: rgb(var(--warning-default) / var(--tw-text-opacity));
|
|
@@ -1738,19 +1940,6 @@ video {
|
|
|
1738
1940
|
line-height: 10px;
|
|
1739
1941
|
font-weight: 400;
|
|
1740
1942
|
}
|
|
1741
|
-
.file\:border-0::file-selector-button {
|
|
1742
|
-
border-width: 0px;
|
|
1743
|
-
}
|
|
1744
|
-
.file\:bg-transparent::file-selector-button {
|
|
1745
|
-
background-color: transparent;
|
|
1746
|
-
}
|
|
1747
|
-
.file\:text-sm::file-selector-button {
|
|
1748
|
-
font-size: 0.875rem;
|
|
1749
|
-
line-height: 1.25rem;
|
|
1750
|
-
}
|
|
1751
|
-
.file\:font-medium::file-selector-button {
|
|
1752
|
-
font-weight: 500;
|
|
1753
|
-
}
|
|
1754
1943
|
.placeholder\:text-input-text-disabled::-moz-placeholder {
|
|
1755
1944
|
--tw-text-opacity: 1;
|
|
1756
1945
|
color: rgb(var(--input-disabled-text-color) / var(--tw-text-opacity));
|
|
@@ -1789,6 +1978,16 @@ video {
|
|
|
1789
1978
|
--tw-bg-opacity: 1;
|
|
1790
1979
|
background-color: rgb(var(--info-100)) / var(--tw-bg-opacity));
|
|
1791
1980
|
}
|
|
1981
|
+
.hover\:bg-main-transparent-primary-8:hover {
|
|
1982
|
+
background-color: rgb(var(--main-transparent-primary) / 0.8);
|
|
1983
|
+
}
|
|
1984
|
+
.hover\:bg-main-transparent-secondary-8:hover {
|
|
1985
|
+
background-color: rgb(var(--main-transparent-secondary) / 0.8);
|
|
1986
|
+
}
|
|
1987
|
+
.hover\:bg-primary-100:hover {
|
|
1988
|
+
--tw-bg-opacity: 1;
|
|
1989
|
+
background-color: rgb(var(--primary-100) / var(--tw-bg-opacity));
|
|
1990
|
+
}
|
|
1792
1991
|
.hover\:bg-primary-80:hover {
|
|
1793
1992
|
--tw-bg-opacity: 1;
|
|
1794
1993
|
background-color: rgb(var(--primary-80) / var(--tw-bg-opacity));
|
|
@@ -1797,6 +1996,10 @@ video {
|
|
|
1797
1996
|
--tw-bg-opacity: 1;
|
|
1798
1997
|
background-color: rgb(var(--secondary-120) / var(--tw-bg-opacity));
|
|
1799
1998
|
}
|
|
1999
|
+
.hover\:bg-secondary-5:hover {
|
|
2000
|
+
--tw-bg-opacity: 1;
|
|
2001
|
+
background-color: rgb(var(--secondary-5) / var(--tw-bg-opacity));
|
|
2002
|
+
}
|
|
1800
2003
|
.hover\:bg-success-120:hover {
|
|
1801
2004
|
--tw-bg-opacity: 1;
|
|
1802
2005
|
background-color: rgb(var(--success-120)) / var(--tw-bg-opacity));
|
|
@@ -1821,6 +2024,17 @@ video {
|
|
|
1821
2024
|
.hover\:fill-input-text:hover {
|
|
1822
2025
|
fill: rgb(var(--input-default-text-color) / 1);
|
|
1823
2026
|
}
|
|
2027
|
+
.hover\:fill-secondary-5:hover {
|
|
2028
|
+
fill: rgb(var(--secondary-5) / 1);
|
|
2029
|
+
}
|
|
2030
|
+
.hover\:text-primary:hover {
|
|
2031
|
+
--tw-text-opacity: 1;
|
|
2032
|
+
color: rgb(var(--primary-default) / var(--tw-text-opacity));
|
|
2033
|
+
}
|
|
2034
|
+
.hover\:text-secondary-5:hover {
|
|
2035
|
+
--tw-text-opacity: 1;
|
|
2036
|
+
color: rgb(var(--secondary-5) / var(--tw-text-opacity));
|
|
2037
|
+
}
|
|
1824
2038
|
.hover\:text-textcolor-dark:hover {
|
|
1825
2039
|
--tw-text-opacity: 1;
|
|
1826
2040
|
color: rgb(var(--text-default-dark) / var(--tw-text-opacity));
|
|
@@ -1908,9 +2122,6 @@ video {
|
|
|
1908
2122
|
.disabled\:fill-secondary-110:disabled {
|
|
1909
2123
|
fill: rgb(var(--secondary-110) / 1);
|
|
1910
2124
|
}
|
|
1911
|
-
.disabled\:opacity-50:disabled {
|
|
1912
|
-
opacity: 0.5;
|
|
1913
|
-
}
|
|
1914
2125
|
.peer:-moz-placeholder-shown ~ .peer-placeholder-shown\:top-2 {
|
|
1915
2126
|
top: 0.5rem;
|
|
1916
2127
|
}
|