@aivenio/aquarium 1.3.0 → 1.4.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/dist/_variables.scss +2 -1
- package/dist/_variables_timescale.scss +2 -1
- package/dist/atoms.cjs +156 -70
- package/dist/atoms.mjs +155 -70
- package/dist/src/common/Checkbox/Checkbox.js +12 -6
- package/dist/src/common/RadioButton/RadioButton.js +5 -12
- package/dist/src/common/Stepper/Stepper.d.ts +33 -0
- package/dist/src/common/Stepper/Stepper.js +60 -0
- package/dist/src/common/Switch/Switch.js +7 -10
- package/dist/src/common/Table/Table.js +2 -2
- package/dist/src/common/index.d.ts +1 -0
- package/dist/src/common/index.js +2 -1
- package/dist/src/components/Container/Container.d.ts +16 -0
- package/dist/src/components/Container/Container.js +18 -0
- package/dist/src/components/Skeleton/Skeleton.js +3 -2
- package/dist/src/components/Stepper/Stepper.d.ts +24 -0
- package/dist/src/components/Stepper/Stepper.js +24 -0
- package/dist/src/components/Timeline/Timeline.js +2 -2
- package/dist/src/components/Typography/Typography.d.ts +5 -3
- package/dist/src/components/Typography/Typography.js +1 -1
- package/dist/src/components/index.d.ts +2 -0
- package/dist/src/components/index.js +3 -1
- package/dist/styles.css +128 -87
- package/dist/styles_timescaledb.css +128 -87
- package/dist/system.cjs +671 -531
- package/dist/system.mjs +627 -489
- package/dist/tailwind.config.js +4 -1
- package/dist/tsconfig.module.tsbuildinfo +1 -1
- package/dist/types/tailwindGenerated.d.ts +1 -1
- package/package.json +5 -4
@@ -697,27 +697,36 @@ input[type='number'].no-arrows {
|
|
697
697
|
top: 0 !important;
|
698
698
|
bottom: 0 !important;
|
699
699
|
}
|
700
|
+
.top-0 {
|
701
|
+
top: 0 !important;
|
702
|
+
}
|
703
|
+
.right-0 {
|
704
|
+
right: 0 !important;
|
705
|
+
}
|
700
706
|
.top-\[20px\] {
|
701
707
|
top: 20px !important;
|
702
708
|
}
|
703
709
|
.right-\[28px\] {
|
704
710
|
right: 28px !important;
|
705
711
|
}
|
712
|
+
.-left-1\/2 {
|
713
|
+
left: -50% !important;
|
714
|
+
}
|
715
|
+
.top-\[3px\] {
|
716
|
+
top: 3px !important;
|
717
|
+
}
|
718
|
+
.top-\[14px\] {
|
719
|
+
top: 14px !important;
|
720
|
+
}
|
706
721
|
.left-2 {
|
707
722
|
left: 4px !important;
|
708
723
|
}
|
709
|
-
.top-0 {
|
710
|
-
top: 0 !important;
|
711
|
-
}
|
712
724
|
.left-1\/2 {
|
713
725
|
left: 50% !important;
|
714
726
|
}
|
715
727
|
.bottom-0 {
|
716
728
|
bottom: 0 !important;
|
717
729
|
}
|
718
|
-
.right-0 {
|
719
|
-
right: 0 !important;
|
720
|
-
}
|
721
730
|
.left-0 {
|
722
731
|
left: 0 !important;
|
723
732
|
}
|
@@ -727,15 +736,15 @@ input[type='number'].no-arrows {
|
|
727
736
|
.-z-10 {
|
728
737
|
z-index: -10 !important;
|
729
738
|
}
|
739
|
+
.z-10 {
|
740
|
+
z-index: 10 !important;
|
741
|
+
}
|
730
742
|
.z-40 {
|
731
743
|
z-index: 40 !important;
|
732
744
|
}
|
733
745
|
.z-0 {
|
734
746
|
z-index: 0 !important;
|
735
747
|
}
|
736
|
-
.z-10 {
|
737
|
-
z-index: 10 !important;
|
738
|
-
}
|
739
748
|
.z-20 {
|
740
749
|
z-index: 20 !important;
|
741
750
|
}
|
@@ -875,9 +884,6 @@ input[type='number'].no-arrows {
|
|
875
884
|
.h-\[20px\] {
|
876
885
|
height: 20px !important;
|
877
886
|
}
|
878
|
-
.h-0 {
|
879
|
-
height: 0 !important;
|
880
|
-
}
|
881
887
|
.h-5 {
|
882
888
|
height: 16px !important;
|
883
889
|
}
|
@@ -890,7 +896,16 @@ input[type='number'].no-arrows {
|
|
890
896
|
.h-2 {
|
891
897
|
height: 4px !important;
|
892
898
|
}
|
893
|
-
.h
|
899
|
+
.h-\[2px\] {
|
900
|
+
height: 2px !important;
|
901
|
+
}
|
902
|
+
.h-\[3px\] {
|
903
|
+
height: 3px !important;
|
904
|
+
}
|
905
|
+
.h-\[32px\] {
|
906
|
+
height: 32px !important;
|
907
|
+
}
|
908
|
+
.h-\[8px\] {
|
894
909
|
height: 8px !important;
|
895
910
|
}
|
896
911
|
.h-4 {
|
@@ -905,9 +920,6 @@ input[type='number'].no-arrows {
|
|
905
920
|
.h-\[6px\] {
|
906
921
|
height: 6px !important;
|
907
922
|
}
|
908
|
-
.h-\[32px\] {
|
909
|
-
height: 32px !important;
|
910
|
-
}
|
911
923
|
.h-\[174px\] {
|
912
924
|
height: 174px !important;
|
913
925
|
}
|
@@ -917,6 +929,9 @@ input[type='number'].no-arrows {
|
|
917
929
|
.h-1px {
|
918
930
|
height: 1px !important;
|
919
931
|
}
|
932
|
+
.h-3 {
|
933
|
+
height: 8px !important;
|
934
|
+
}
|
920
935
|
.h-6 {
|
921
936
|
height: 24px !important;
|
922
937
|
}
|
@@ -941,13 +956,13 @@ input[type='number'].no-arrows {
|
|
941
956
|
.w-full {
|
942
957
|
width: 100% !important;
|
943
958
|
}
|
944
|
-
.w-0 {
|
945
|
-
width: 0 !important;
|
946
|
-
}
|
947
959
|
.w-5 {
|
948
960
|
width: 16px !important;
|
949
961
|
}
|
950
|
-
.w
|
962
|
+
.w-\[32px\] {
|
963
|
+
width: 32px !important;
|
964
|
+
}
|
965
|
+
.w-\[8px\] {
|
951
966
|
width: 8px !important;
|
952
967
|
}
|
953
968
|
.w-\[34px\] {
|
@@ -962,9 +977,6 @@ input[type='number'].no-arrows {
|
|
962
977
|
.w-\[6px\] {
|
963
978
|
width: 6px !important;
|
964
979
|
}
|
965
|
-
.w-\[32px\] {
|
966
|
-
width: 32px !important;
|
967
|
-
}
|
968
980
|
.w-\[280px\] {
|
969
981
|
width: 280px !important;
|
970
982
|
}
|
@@ -974,6 +986,9 @@ input[type='number'].no-arrows {
|
|
974
986
|
.w-2 {
|
975
987
|
width: 4px !important;
|
976
988
|
}
|
989
|
+
.w-3 {
|
990
|
+
width: 8px !important;
|
991
|
+
}
|
977
992
|
.w-6 {
|
978
993
|
width: 24px !important;
|
979
994
|
}
|
@@ -995,6 +1010,21 @@ input[type='number'].no-arrows {
|
|
995
1010
|
.max-w-\[940px\] {
|
996
1011
|
max-width: 940px !important;
|
997
1012
|
}
|
1013
|
+
.max-w-screen-xl {
|
1014
|
+
max-width: 1536px !important;
|
1015
|
+
}
|
1016
|
+
.max-w-screen-lg {
|
1017
|
+
max-width: 1312px !important;
|
1018
|
+
}
|
1019
|
+
.max-w-screen-md {
|
1020
|
+
max-width: 1056px !important;
|
1021
|
+
}
|
1022
|
+
.max-w-screen-sm {
|
1023
|
+
max-width: 672px !important;
|
1024
|
+
}
|
1025
|
+
.max-w-screen-xs {
|
1026
|
+
max-width: 320px !important;
|
1027
|
+
}
|
998
1028
|
.max-w-\[70px\] {
|
999
1029
|
max-width: 70px !important;
|
1000
1030
|
}
|
@@ -1222,6 +1252,9 @@ input[type='number'].no-arrows {
|
|
1222
1252
|
.border-0 {
|
1223
1253
|
border-width: 0px !important;
|
1224
1254
|
}
|
1255
|
+
.border-2 {
|
1256
|
+
border-width: 2px !important;
|
1257
|
+
}
|
1225
1258
|
.border-b-\[1px\] {
|
1226
1259
|
border-bottom-width: 1px !important;
|
1227
1260
|
}
|
@@ -1256,14 +1289,29 @@ input[type='number'].no-arrows {
|
|
1256
1289
|
--tw-border-opacity: 1 !important;
|
1257
1290
|
border-color: rgb(237 237 240 / var(--tw-border-opacity)) !important;
|
1258
1291
|
}
|
1292
|
+
.border-transparent {
|
1293
|
+
border-color: transparent !important;
|
1294
|
+
}
|
1259
1295
|
.border-grey-10 {
|
1260
1296
|
--tw-border-opacity: 1 !important;
|
1261
1297
|
border-color: rgb(225 225 227 / var(--tw-border-opacity)) !important;
|
1262
1298
|
}
|
1299
|
+
.border-navyBlue-100 {
|
1300
|
+
--tw-border-opacity: 1 !important;
|
1301
|
+
border-color: rgb(48 55 94 / var(--tw-border-opacity)) !important;
|
1302
|
+
}
|
1263
1303
|
.border-grey-50 {
|
1264
1304
|
--tw-border-opacity: 1 !important;
|
1265
1305
|
border-color: rgb(120 120 133 / var(--tw-border-opacity)) !important;
|
1266
1306
|
}
|
1307
|
+
.border-grey-90 {
|
1308
|
+
--tw-border-opacity: 1 !important;
|
1309
|
+
border-color: rgb(41 42 49 / var(--tw-border-opacity)) !important;
|
1310
|
+
}
|
1311
|
+
.border-success-70 {
|
1312
|
+
--tw-border-opacity: 1 !important;
|
1313
|
+
border-color: rgb(0 179 0 / var(--tw-border-opacity)) !important;
|
1314
|
+
}
|
1267
1315
|
.border-grey-40 {
|
1268
1316
|
--tw-border-opacity: 1 !important;
|
1269
1317
|
border-color: rgb(150 150 160 / var(--tw-border-opacity)) !important;
|
@@ -1271,9 +1319,6 @@ input[type='number'].no-arrows {
|
|
1271
1319
|
.border-current {
|
1272
1320
|
border-color: currentColor !important;
|
1273
1321
|
}
|
1274
|
-
.border-transparent {
|
1275
|
-
border-color: transparent !important;
|
1276
|
-
}
|
1277
1322
|
.border-grey-100 {
|
1278
1323
|
--tw-border-opacity: 1 !important;
|
1279
1324
|
border-color: rgb(25 25 29 / var(--tw-border-opacity)) !important;
|
@@ -1310,14 +1355,14 @@ input[type='number'].no-arrows {
|
|
1310
1355
|
--tw-bg-opacity: 1 !important;
|
1311
1356
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity)) !important;
|
1312
1357
|
}
|
1313
|
-
.bg-grey-5 {
|
1314
|
-
--tw-bg-opacity: 1 !important;
|
1315
|
-
background-color: rgb(237 237 240 / var(--tw-bg-opacity)) !important;
|
1316
|
-
}
|
1317
1358
|
.bg-navyBlue-100 {
|
1318
1359
|
--tw-bg-opacity: 1 !important;
|
1319
1360
|
background-color: rgb(48 55 94 / var(--tw-bg-opacity)) !important;
|
1320
1361
|
}
|
1362
|
+
.bg-grey-5 {
|
1363
|
+
--tw-bg-opacity: 1 !important;
|
1364
|
+
background-color: rgb(237 237 240 / var(--tw-bg-opacity)) !important;
|
1365
|
+
}
|
1321
1366
|
.bg-info-50 {
|
1322
1367
|
--tw-bg-opacity: 1 !important;
|
1323
1368
|
background-color: rgb(40 180 244 / var(--tw-bg-opacity)) !important;
|
@@ -1338,6 +1383,10 @@ input[type='number'].no-arrows {
|
|
1338
1383
|
--tw-bg-opacity: 1 !important;
|
1339
1384
|
background-color: rgb(210 210 214 / var(--tw-bg-opacity)) !important;
|
1340
1385
|
}
|
1386
|
+
.bg-grey-90 {
|
1387
|
+
--tw-bg-opacity: 1 !important;
|
1388
|
+
background-color: rgb(41 42 49 / var(--tw-bg-opacity)) !important;
|
1389
|
+
}
|
1341
1390
|
.bg-grey-30 {
|
1342
1391
|
--tw-bg-opacity: 1 !important;
|
1343
1392
|
background-color: rgb(180 180 187 / var(--tw-bg-opacity)) !important;
|
@@ -1364,9 +1413,8 @@ input[type='number'].no-arrows {
|
|
1364
1413
|
--tw-bg-opacity: 1 !important;
|
1365
1414
|
background-color: rgb(3 153 227 / var(--tw-bg-opacity)) !important;
|
1366
1415
|
}
|
1367
|
-
.bg-
|
1368
|
-
--tw-bg-opacity:
|
1369
|
-
background-color: rgb(41 42 49 / var(--tw-bg-opacity)) !important;
|
1416
|
+
.bg-opacity-40 {
|
1417
|
+
--tw-bg-opacity: 0.4 !important;
|
1370
1418
|
}
|
1371
1419
|
.bg-gradient-to-r {
|
1372
1420
|
background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important;
|
@@ -1402,12 +1450,15 @@ input[type='number'].no-arrows {
|
|
1402
1450
|
.p-6 {
|
1403
1451
|
padding: 24px !important;
|
1404
1452
|
}
|
1405
|
-
.p-\[
|
1406
|
-
padding:
|
1453
|
+
.p-\[2px\] {
|
1454
|
+
padding: 2px !important;
|
1407
1455
|
}
|
1408
1456
|
.p-3 {
|
1409
1457
|
padding: 8px !important;
|
1410
1458
|
}
|
1459
|
+
.p-\[3px\] {
|
1460
|
+
padding: 3px !important;
|
1461
|
+
}
|
1411
1462
|
.p-2 {
|
1412
1463
|
padding: 4px !important;
|
1413
1464
|
}
|
@@ -1463,6 +1514,14 @@ input[type='number'].no-arrows {
|
|
1463
1514
|
padding-left: 1px !important;
|
1464
1515
|
padding-right: 1px !important;
|
1465
1516
|
}
|
1517
|
+
.px-\[14px\] {
|
1518
|
+
padding-left: 14px !important;
|
1519
|
+
padding-right: 14px !important;
|
1520
|
+
}
|
1521
|
+
.px-\[20px\] {
|
1522
|
+
padding-left: 20px !important;
|
1523
|
+
padding-right: 20px !important;
|
1524
|
+
}
|
1466
1525
|
.px-4 {
|
1467
1526
|
padding-left: 12px !important;
|
1468
1527
|
padding-right: 12px !important;
|
@@ -1895,9 +1954,6 @@ input[type='number'].no-arrows {
|
|
1895
1954
|
.underline-offset-2 {
|
1896
1955
|
text-underline-offset: 2px !important;
|
1897
1956
|
}
|
1898
|
-
.opacity-0 {
|
1899
|
-
opacity: 0 !important;
|
1900
|
-
}
|
1901
1957
|
.opacity-70 {
|
1902
1958
|
opacity: 0.7 !important;
|
1903
1959
|
}
|
@@ -1994,6 +2050,26 @@ input[type='number'].no-arrows {
|
|
1994
2050
|
.first\:mt-0:first-child {
|
1995
2051
|
margin-top: 0 !important;
|
1996
2052
|
}
|
2053
|
+
.checked\:border-navyBlue-100:checked {
|
2054
|
+
--tw-border-opacity: 1 !important;
|
2055
|
+
border-color: rgb(48 55 94 / var(--tw-border-opacity)) !important;
|
2056
|
+
}
|
2057
|
+
.checked\:bg-navyBlue-100:checked {
|
2058
|
+
--tw-bg-opacity: 1 !important;
|
2059
|
+
background-color: rgb(48 55 94 / var(--tw-bg-opacity)) !important;
|
2060
|
+
}
|
2061
|
+
.checked\:bg-opacity-40:checked {
|
2062
|
+
--tw-bg-opacity: 0.4 !important;
|
2063
|
+
}
|
2064
|
+
.checked\:opacity-40:checked {
|
2065
|
+
opacity: 0.4 !important;
|
2066
|
+
}
|
2067
|
+
.checked\:shadow-whiteInset:checked {
|
2068
|
+
--tw-shadow: inset 0 0 0 3px rgba(255,255,255,1) !important;
|
2069
|
+
--tw-shadow-colored: inset 0 0 0 3px var(--tw-shadow-color) !important;
|
2070
|
+
box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow) !important;
|
2071
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow) !important;
|
2072
|
+
}
|
1997
2073
|
.hover\:cursor-pointer:hover {
|
1998
2074
|
cursor: pointer !important;
|
1999
2075
|
}
|
@@ -2009,6 +2085,10 @@ input[type='number'].no-arrows {
|
|
2009
2085
|
--tw-bg-opacity: 1 !important;
|
2010
2086
|
background-color: rgb(247 247 250 / var(--tw-bg-opacity)) !important;
|
2011
2087
|
}
|
2088
|
+
.hover\:bg-grey-30:hover {
|
2089
|
+
--tw-bg-opacity: 1 !important;
|
2090
|
+
background-color: rgb(180 180 187 / var(--tw-bg-opacity)) !important;
|
2091
|
+
}
|
2012
2092
|
.hover\:bg-primary-70:hover {
|
2013
2093
|
--tw-bg-opacity: 1 !important;
|
2014
2094
|
background-color: rgb(3 153 227 / var(--tw-bg-opacity)) !important;
|
@@ -2041,6 +2121,13 @@ input[type='number'].no-arrows {
|
|
2041
2121
|
--tw-ring-opacity: 1 !important;
|
2042
2122
|
--tw-ring-color: rgb(120 120 133 / var(--tw-ring-opacity)) !important;
|
2043
2123
|
}
|
2124
|
+
.hover\:checked\:bg-navyBlue-100:checked:hover {
|
2125
|
+
--tw-bg-opacity: 1 !important;
|
2126
|
+
background-color: rgb(48 55 94 / var(--tw-bg-opacity)) !important;
|
2127
|
+
}
|
2128
|
+
.focus\:border:focus {
|
2129
|
+
border-width: 1px !important;
|
2130
|
+
}
|
2044
2131
|
.focus\:border-info-70:focus {
|
2045
2132
|
--tw-border-opacity: 1 !important;
|
2046
2133
|
border-color: rgb(3 153 227 / var(--tw-border-opacity)) !important;
|
@@ -2266,10 +2353,6 @@ input[type='number'].no-arrows {
|
|
2266
2353
|
--tw-bg-opacity: 1 !important;
|
2267
2354
|
background-color: rgb(247 247 250 / var(--tw-bg-opacity)) !important;
|
2268
2355
|
}
|
2269
|
-
.group:hover .group-hover\:bg-grey-30 {
|
2270
|
-
--tw-bg-opacity: 1 !important;
|
2271
|
-
background-color: rgb(180 180 187 / var(--tw-bg-opacity)) !important;
|
2272
|
-
}
|
2273
2356
|
.peer\/switch:checked~.peer-checked\/switch\:left-1 {
|
2274
2357
|
left: 2px !important;
|
2275
2358
|
}
|
@@ -2281,18 +2364,6 @@ input[type='number'].no-arrows {
|
|
2281
2364
|
--tw-border-opacity: 1 !important;
|
2282
2365
|
border-color: rgb(48 55 94 / var(--tw-border-opacity)) !important;
|
2283
2366
|
}
|
2284
|
-
.peer\/radio:checked~.peer-checked\/radio\:border-navyBlue-100 {
|
2285
|
-
--tw-border-opacity: 1 !important;
|
2286
|
-
border-color: rgb(48 55 94 / var(--tw-border-opacity)) !important;
|
2287
|
-
}
|
2288
|
-
.peer:checked~.peer-checked\:bg-navyBlue-100 {
|
2289
|
-
--tw-bg-opacity: 1 !important;
|
2290
|
-
background-color: rgb(48 55 94 / var(--tw-bg-opacity)) !important;
|
2291
|
-
}
|
2292
|
-
.peer\/switch:checked~.peer-checked\/switch\:bg-navyBlue-100 {
|
2293
|
-
--tw-bg-opacity: 1 !important;
|
2294
|
-
background-color: rgb(48 55 94 / var(--tw-bg-opacity)) !important;
|
2295
|
-
}
|
2296
2367
|
.peer:checked~.peer-checked\:text-white {
|
2297
2368
|
--tw-text-opacity: 1 !important;
|
2298
2369
|
color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
|
@@ -2301,38 +2372,14 @@ input[type='number'].no-arrows {
|
|
2301
2372
|
--tw-text-opacity: 1 !important;
|
2302
2373
|
color: rgb(180 180 187 / var(--tw-text-opacity)) !important;
|
2303
2374
|
}
|
2304
|
-
.peer\/radio:checked~.peer-checked\/radio\:opacity-40 {
|
2305
|
-
opacity: 0.4 !important;
|
2306
|
-
}
|
2307
|
-
.peer\/switch:checked~.peer-checked\/switch\:opacity-40 {
|
2308
|
-
opacity: 0.4 !important;
|
2309
|
-
}
|
2310
2375
|
.peer:hover~.peer-hover\:border-grey-50 {
|
2311
2376
|
--tw-border-opacity: 1 !important;
|
2312
2377
|
border-color: rgb(120 120 133 / var(--tw-border-opacity)) !important;
|
2313
2378
|
}
|
2314
|
-
.peer\/radio:hover~.peer-hover\/radio\:border-grey-50 {
|
2315
|
-
--tw-border-opacity: 1 !important;
|
2316
|
-
border-color: rgb(120 120 133 / var(--tw-border-opacity)) !important;
|
2317
|
-
}
|
2318
|
-
.peer\/switch:focus~.peer-focus\/switch\:border {
|
2319
|
-
border-width: 1px !important;
|
2320
|
-
}
|
2321
2379
|
.peer:focus~.peer-focus\:border-info-70 {
|
2322
2380
|
--tw-border-opacity: 1 !important;
|
2323
2381
|
border-color: rgb(3 153 227 / var(--tw-border-opacity)) !important;
|
2324
2382
|
}
|
2325
|
-
.peer\/radio:focus~.peer-focus\/radio\:border-info-70 {
|
2326
|
-
--tw-border-opacity: 1 !important;
|
2327
|
-
border-color: rgb(3 153 227 / var(--tw-border-opacity)) !important;
|
2328
|
-
}
|
2329
|
-
.peer:disabled~.peer-disabled\:cursor-not-allowed {
|
2330
|
-
cursor: not-allowed !important;
|
2331
|
-
}
|
2332
|
-
.peer:disabled~.peer-disabled\:border-grey-5 {
|
2333
|
-
--tw-border-opacity: 1 !important;
|
2334
|
-
border-color: rgb(237 237 240 / var(--tw-border-opacity)) !important;
|
2335
|
-
}
|
2336
2383
|
.peer\/switch:disabled~.peer-disabled\/switch\:bg-grey-0 {
|
2337
2384
|
--tw-bg-opacity: 1 !important;
|
2338
2385
|
background-color: rgb(247 247 250 / var(--tw-bg-opacity)) !important;
|
@@ -2347,21 +2394,15 @@ input[type='number'].no-arrows {
|
|
2347
2394
|
.children\:last\:border-b-0:last-child>* {
|
2348
2395
|
border-bottom-width: 0px !important;
|
2349
2396
|
}
|
2397
|
+
.\[\&\>path\]\:stroke-transparent>path {
|
2398
|
+
stroke: transparent !important;
|
2399
|
+
}
|
2350
2400
|
.peer:checked~.peer-checked\:\[\&\>path\]\:stroke-white>path {
|
2351
2401
|
stroke: white !important;
|
2352
2402
|
}
|
2353
2403
|
.peer:checked~.peer-checked\:\[\&\>path\]\:stroke-grey-30>path {
|
2354
2404
|
stroke: #b4b4bb !important;
|
2355
2405
|
}
|
2356
|
-
.peer:checked~.peer-checked\:\[\&\>path\]\:stroke-2>path {
|
2357
|
-
stroke-width: 2 !important;
|
2358
|
-
}
|
2359
|
-
.peer\/radio:checked~.peer-checked\/radio\:\[\&\>\*\]\:block>* {
|
2360
|
-
display: block !important;
|
2361
|
-
}
|
2362
|
-
.peer\/radio:checked~.peer-checked\/radio\:\[\&\>\*\]\:opacity-40>* {
|
2363
|
-
opacity: 0.4 !important;
|
2364
|
-
}
|
2365
2406
|
.\[\&\>\*\:not\(\:first-child\)\]\:-ml-3>*:not(:first-child) {
|
2366
2407
|
margin-left: -8px !important;
|
2367
2408
|
}
|