@code-coaching/vuetiful 0.12.1 → 0.13.0
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/style.css +1 -1
- package/dist/styles/all.css +97 -509
- package/dist/types/components/atoms/VRadio/VRadioDescription.vue.d.ts +8 -0
- package/dist/types/components/atoms/VRadio/VRadioGroup.vue.d.ts +55 -0
- package/dist/types/components/atoms/VRadio/VRadioLabel.vue.d.ts +14 -0
- package/dist/types/components/atoms/index.d.ts +5 -3
- package/dist/types/components/index.d.ts +2 -3
- package/dist/types/components/molecules/VDrawer.vue.d.ts +1 -1
- package/dist/types/utils/code-block/VCodeBlock.vue.d.ts +1 -1
- package/dist/vuetiful.es.mjs +642 -271
- package/dist/vuetiful.umd.js +14 -11
- package/package.json +2 -1
- package/src/components/atoms/VRadio/VRadioDescription.vue +11 -0
- package/src/components/atoms/VRadio/VRadioGroup.vue +60 -0
- package/src/components/atoms/VRadio/VRadioItem.vue +26 -0
- package/src/components/atoms/VRadio/VRadioLabel.vue +16 -0
- package/src/components/atoms/index.ts +6 -3
- package/src/components/index.ts +2 -4
- package/dist/types/components/atoms/VRadioGroup.vue.d.ts +0 -32
- package/src/components/atoms/VRadioGroup.vue +0 -42
- package/src/components/atoms/VRadioItem.vue +0 -154
- /package/dist/types/components/atoms/{VRadioItem.vue.d.ts → VRadio/VRadioItem.vue.d.ts} +0 -0
package/dist/styles/all.css
CHANGED
|
@@ -948,282 +948,24 @@ progress::-webkit-progress-value {
|
|
|
948
948
|
|
|
949
949
|
/* === Core Styles === */
|
|
950
950
|
|
|
951
|
-
.input,
|
|
952
|
-
.textarea,
|
|
953
|
-
.select,
|
|
954
|
-
.input-group {
|
|
955
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
|
|
956
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
957
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
|
|
958
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
959
|
-
transition-duration: 200ms;
|
|
960
|
-
width:100%;
|
|
961
|
-
transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;
|
|
962
|
-
transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;
|
|
963
|
-
transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;
|
|
964
|
-
transition-timing-function:cubic-bezier(.4,0,.2,1);
|
|
965
|
-
transition-duration:.15s;
|
|
966
|
-
/* Background */
|
|
967
|
-
background-color: rgb(var(--color-surface-200));
|
|
968
|
-
}
|
|
969
|
-
|
|
970
|
-
.dark .input,.dark
|
|
971
|
-
.textarea,.dark
|
|
972
|
-
.select,.dark
|
|
973
|
-
.input-group {
|
|
974
|
-
background-color: rgb(var(--color-surface-700));
|
|
975
|
-
}
|
|
976
|
-
|
|
977
|
-
.input,
|
|
978
|
-
.textarea,
|
|
979
|
-
.select,
|
|
980
|
-
.input-group{
|
|
981
|
-
background-color:rgb(var(--color-surface-200))
|
|
982
|
-
}
|
|
983
|
-
|
|
984
|
-
.dark .input,.dark
|
|
985
|
-
.textarea,.dark
|
|
986
|
-
.select,.dark
|
|
987
|
-
.input-group{
|
|
988
|
-
background-color:rgb(var(--color-surface-700))
|
|
989
|
-
}
|
|
990
|
-
|
|
991
|
-
.input:hover,
|
|
992
|
-
.textarea:hover,
|
|
993
|
-
.select:hover,
|
|
994
|
-
.input-group:hover {
|
|
995
|
-
--tw-brightness: brightness(1.05);
|
|
996
|
-
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);
|
|
997
|
-
}
|
|
998
|
-
|
|
999
|
-
.input:focus,
|
|
1000
|
-
.textarea:focus,
|
|
1001
|
-
.select:focus,
|
|
1002
|
-
.input-group:focus {
|
|
1003
|
-
--tw-brightness: brightness(1.05);
|
|
1004
|
-
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);
|
|
1005
|
-
}
|
|
1006
|
-
|
|
1007
|
-
.input,
|
|
1008
|
-
.textarea,
|
|
1009
|
-
.select,
|
|
1010
|
-
.input-group {
|
|
1011
|
-
/* Ring */
|
|
1012
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
|
|
1013
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
|
|
1014
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
|
|
1015
|
-
/* Border */
|
|
1016
|
-
border-width: var(--theme-border-base);
|
|
1017
|
-
border-color: rgb(var(--color-surface-400));
|
|
1018
|
-
}
|
|
1019
|
-
|
|
1020
|
-
.dark .input,.dark
|
|
1021
|
-
.textarea,.dark
|
|
1022
|
-
.select,.dark
|
|
1023
|
-
.input-group {
|
|
1024
|
-
border-color: rgb(var(--color-surface-500));
|
|
1025
|
-
}
|
|
1026
|
-
|
|
1027
|
-
.input,
|
|
1028
|
-
.textarea,
|
|
1029
|
-
.select,
|
|
1030
|
-
.input-group{
|
|
1031
|
-
border-width:var(--theme-border-base);
|
|
1032
|
-
border-color:rgb(var(--color-surface-400))
|
|
1033
|
-
}
|
|
1034
|
-
|
|
1035
|
-
.dark .input,.dark
|
|
1036
|
-
.textarea,.dark
|
|
1037
|
-
.select,.dark
|
|
1038
|
-
.input-group{
|
|
1039
|
-
border-color:rgb(var(--color-surface-500))
|
|
1040
|
-
}
|
|
1041
|
-
|
|
1042
|
-
.input:focus-within,
|
|
1043
|
-
.textarea:focus-within,
|
|
1044
|
-
.select:focus-within,
|
|
1045
|
-
.input-group:focus-within {
|
|
1046
|
-
--tw-border-opacity: 1;
|
|
1047
|
-
border-color: rgb(var(--color-primary-500) / var(--tw-border-opacity));
|
|
1048
|
-
}
|
|
1049
|
-
|
|
1050
951
|
/* Base Inputs */
|
|
1051
952
|
|
|
1052
|
-
.input,
|
|
1053
|
-
.input-group {
|
|
1054
|
-
border-radius:var(--theme-rounded-base);
|
|
1055
|
-
}
|
|
1056
|
-
|
|
1057
953
|
/* Container Inputs */
|
|
1058
954
|
|
|
1059
955
|
/* Select (size/multiple) */
|
|
1060
956
|
|
|
1061
957
|
/* Checkbox & Radio */
|
|
1062
958
|
|
|
1063
|
-
.checkbox,
|
|
1064
|
-
.radio {
|
|
1065
|
-
height: 1.25rem;
|
|
1066
|
-
width: 1.25rem;
|
|
1067
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
|
|
1068
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
|
|
1069
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
|
|
1070
|
-
cursor:pointer;
|
|
1071
|
-
border-radius:.25rem;
|
|
1072
|
-
/* Background */
|
|
1073
|
-
background-color: rgb(var(--color-surface-200));
|
|
1074
|
-
}
|
|
1075
|
-
|
|
1076
|
-
.dark .checkbox,.dark
|
|
1077
|
-
.radio {
|
|
1078
|
-
background-color: rgb(var(--color-surface-700));
|
|
1079
|
-
}
|
|
1080
|
-
|
|
1081
|
-
.checkbox,
|
|
1082
|
-
.radio{
|
|
1083
|
-
background-color:rgb(var(--color-surface-200))
|
|
1084
|
-
}
|
|
1085
|
-
|
|
1086
|
-
.dark .checkbox,.dark
|
|
1087
|
-
.radio{
|
|
1088
|
-
background-color:rgb(var(--color-surface-700))
|
|
1089
|
-
}
|
|
1090
|
-
|
|
1091
|
-
.checkbox:hover,
|
|
1092
|
-
.radio:hover {
|
|
1093
|
-
--tw-brightness: brightness(1.05);
|
|
1094
|
-
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);
|
|
1095
|
-
}
|
|
1096
|
-
|
|
1097
|
-
.checkbox:focus,
|
|
1098
|
-
.radio:focus {
|
|
1099
|
-
--tw-brightness: brightness(1.05);
|
|
1100
|
-
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);
|
|
1101
|
-
}
|
|
1102
|
-
|
|
1103
|
-
.checkbox,
|
|
1104
|
-
.radio {
|
|
1105
|
-
/* Border */
|
|
1106
|
-
border-width: var(--theme-border-base);
|
|
1107
|
-
border-color: rgb(var(--color-surface-400));
|
|
1108
|
-
}
|
|
1109
|
-
|
|
1110
|
-
.dark .checkbox,.dark
|
|
1111
|
-
.radio {
|
|
1112
|
-
border-color: rgb(var(--color-surface-500));
|
|
1113
|
-
}
|
|
1114
|
-
|
|
1115
|
-
.checkbox,
|
|
1116
|
-
.radio{
|
|
1117
|
-
border-width:var(--theme-border-base);
|
|
1118
|
-
border-color:rgb(var(--color-surface-400))
|
|
1119
|
-
}
|
|
1120
|
-
|
|
1121
|
-
.dark .checkbox,.dark
|
|
1122
|
-
.radio{
|
|
1123
|
-
border-color:rgb(var(--color-surface-500))
|
|
1124
|
-
}
|
|
1125
|
-
|
|
1126
|
-
.checkbox:focus,
|
|
1127
|
-
.radio:focus {
|
|
1128
|
-
--tw-border-opacity: 1;
|
|
1129
|
-
border-color: rgb(var(--color-primary-500) / var(--tw-border-opacity));
|
|
1130
|
-
}
|
|
1131
|
-
|
|
1132
|
-
.checkbox:checked,
|
|
1133
|
-
.radio:checked {
|
|
1134
|
-
--tw-bg-opacity: 1;
|
|
1135
|
-
background-color: rgb(var(--color-primary-500) / var(--tw-bg-opacity));
|
|
1136
|
-
}
|
|
1137
|
-
|
|
1138
|
-
.checkbox:checked:hover,
|
|
1139
|
-
.radio:checked:hover {
|
|
1140
|
-
--tw-bg-opacity: 1;
|
|
1141
|
-
background-color: rgb(var(--color-primary-500) / var(--tw-bg-opacity));
|
|
1142
|
-
}
|
|
1143
|
-
|
|
1144
|
-
.checkbox:checked:focus,
|
|
1145
|
-
.radio:checked:focus {
|
|
1146
|
-
--tw-bg-opacity: 1;
|
|
1147
|
-
background-color: rgb(var(--color-primary-500) / var(--tw-bg-opacity));
|
|
1148
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1149
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1150
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1151
|
-
}
|
|
1152
|
-
|
|
1153
|
-
.radio {
|
|
1154
|
-
border-radius:var(--theme-rounded-base);
|
|
1155
|
-
}
|
|
1156
|
-
|
|
1157
959
|
/* === Specialized === */
|
|
1158
960
|
|
|
1159
961
|
/* File Inputs */
|
|
1160
962
|
|
|
1161
|
-
.input[type="file"] {
|
|
1162
|
-
padding:.25rem;
|
|
1163
|
-
}
|
|
1164
|
-
|
|
1165
963
|
/* Color Picker */
|
|
1166
964
|
|
|
1167
965
|
/* https://stackoverflow.com/questions/11167281/webkit-css-to-control-the-box-around-the-color-in-an-inputtype-color */
|
|
1168
966
|
|
|
1169
|
-
.input[type="color"] {
|
|
1170
|
-
height: 2.5rem;
|
|
1171
|
-
width: 2.5rem;
|
|
1172
|
-
border-style: none;
|
|
1173
|
-
cursor:pointer;
|
|
1174
|
-
overflow:hidden;
|
|
1175
|
-
border-radius:var(--theme-rounded-base);
|
|
1176
|
-
-webkit-appearance: none;
|
|
1177
|
-
/* WebKit Only */
|
|
1178
|
-
}
|
|
1179
|
-
|
|
1180
|
-
.input[type="color"]::-webkit-color-swatch-wrapper {
|
|
1181
|
-
padding: 0px;
|
|
1182
|
-
}
|
|
1183
|
-
|
|
1184
|
-
.input[type="color"]::-webkit-color-swatch {
|
|
1185
|
-
border-style: none;
|
|
1186
|
-
}
|
|
1187
|
-
|
|
1188
|
-
.input[type="color"]:hover::-webkit-color-swatch {
|
|
1189
|
-
--tw-brightness: brightness(1.1);
|
|
1190
|
-
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);
|
|
1191
|
-
}
|
|
1192
|
-
|
|
1193
|
-
.input[type="color"]::-moz-color-swatch {
|
|
1194
|
-
border-style: none;
|
|
1195
|
-
}
|
|
1196
|
-
|
|
1197
967
|
/* === States === */
|
|
1198
968
|
|
|
1199
|
-
.input:disabled,
|
|
1200
|
-
.textarea:disabled,
|
|
1201
|
-
.select:disabled {
|
|
1202
|
-
cursor: not-allowed !important;
|
|
1203
|
-
opacity: 0.5 !important;
|
|
1204
|
-
}
|
|
1205
|
-
|
|
1206
|
-
.input:disabled:hover,
|
|
1207
|
-
.textarea:disabled:hover,
|
|
1208
|
-
.select:disabled:hover {
|
|
1209
|
-
--tw-brightness: brightness(1) !important;
|
|
1210
|
-
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) !important;
|
|
1211
|
-
}
|
|
1212
|
-
|
|
1213
|
-
.input[readonly],
|
|
1214
|
-
.textarea[readonly],
|
|
1215
|
-
.select[readonly] {
|
|
1216
|
-
cursor: not-allowed !important;
|
|
1217
|
-
border-width: 0px !important;
|
|
1218
|
-
}
|
|
1219
|
-
|
|
1220
|
-
.input[readonly]:hover,
|
|
1221
|
-
.textarea[readonly]:hover,
|
|
1222
|
-
.select[readonly]:hover {
|
|
1223
|
-
--tw-brightness: brightness(1) !important;
|
|
1224
|
-
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) !important;
|
|
1225
|
-
}
|
|
1226
|
-
|
|
1227
969
|
/* === Input Groups === */
|
|
1228
970
|
|
|
1229
971
|
/* === Variants === */
|
|
@@ -1750,202 +1492,6 @@ progress::-webkit-progress-value {
|
|
|
1750
1492
|
margin-bottom:calc(.25rem * var(--tw-space-y-reverse))
|
|
1751
1493
|
}
|
|
1752
1494
|
|
|
1753
|
-
.input,.textarea,.select,.input-group {
|
|
1754
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
|
|
1755
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
1756
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
|
|
1757
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1758
|
-
transition-duration: 200ms;
|
|
1759
|
-
width:100%;
|
|
1760
|
-
transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;
|
|
1761
|
-
transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;
|
|
1762
|
-
transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;
|
|
1763
|
-
transition-timing-function:cubic-bezier(.4,0,.2,1);
|
|
1764
|
-
transition-duration:.15s;
|
|
1765
|
-
background-color: rgb(var(--color-surface-200));
|
|
1766
|
-
}
|
|
1767
|
-
|
|
1768
|
-
.dark .input,.dark .textarea,.dark .select,.dark .input-group {
|
|
1769
|
-
background-color: rgb(var(--color-surface-700));
|
|
1770
|
-
}
|
|
1771
|
-
|
|
1772
|
-
.input,.textarea,.select,.input-group{
|
|
1773
|
-
background-color:rgb(var(--color-surface-200))
|
|
1774
|
-
}
|
|
1775
|
-
|
|
1776
|
-
.dark .input,.dark .textarea,.dark .select,.dark .input-group{
|
|
1777
|
-
background-color:rgb(var(--color-surface-700))
|
|
1778
|
-
}
|
|
1779
|
-
|
|
1780
|
-
.input:hover,.textarea:hover,.select:hover,.input-group:hover {
|
|
1781
|
-
--tw-brightness: brightness(1.05);
|
|
1782
|
-
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);
|
|
1783
|
-
}
|
|
1784
|
-
|
|
1785
|
-
.input:focus,.textarea:focus,.select:focus,.input-group:focus {
|
|
1786
|
-
--tw-brightness: brightness(1.05);
|
|
1787
|
-
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);
|
|
1788
|
-
}
|
|
1789
|
-
|
|
1790
|
-
.input,.textarea,.select,.input-group {
|
|
1791
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
|
|
1792
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
|
|
1793
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
|
|
1794
|
-
border-width: var(--theme-border-base);
|
|
1795
|
-
border-color: rgb(var(--color-surface-400));
|
|
1796
|
-
}
|
|
1797
|
-
|
|
1798
|
-
.dark .input,.dark .textarea,.dark .select,.dark .input-group {
|
|
1799
|
-
border-color: rgb(var(--color-surface-500));
|
|
1800
|
-
}
|
|
1801
|
-
|
|
1802
|
-
.input,.textarea,.select,.input-group{
|
|
1803
|
-
border-width:var(--theme-border-base);
|
|
1804
|
-
border-color:rgb(var(--color-surface-400))
|
|
1805
|
-
}
|
|
1806
|
-
|
|
1807
|
-
.dark .input,.dark .textarea,.dark .select,.dark .input-group{
|
|
1808
|
-
border-color:rgb(var(--color-surface-500))
|
|
1809
|
-
}
|
|
1810
|
-
|
|
1811
|
-
.input:focus-within,.textarea:focus-within,.select:focus-within,.input-group:focus-within {
|
|
1812
|
-
--tw-border-opacity: 1;
|
|
1813
|
-
border-color: rgb(var(--color-primary-500) / var(--tw-border-opacity));
|
|
1814
|
-
}
|
|
1815
|
-
|
|
1816
|
-
.input,.input-group {
|
|
1817
|
-
border-radius:var(--theme-rounded-base);
|
|
1818
|
-
}
|
|
1819
|
-
|
|
1820
|
-
.checkbox,.radio {
|
|
1821
|
-
height: 1.25rem;
|
|
1822
|
-
width: 1.25rem;
|
|
1823
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
|
|
1824
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
|
|
1825
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
|
|
1826
|
-
cursor:pointer;
|
|
1827
|
-
border-radius:.25rem;
|
|
1828
|
-
background-color: rgb(var(--color-surface-200));
|
|
1829
|
-
}
|
|
1830
|
-
|
|
1831
|
-
.dark .checkbox,.dark .radio {
|
|
1832
|
-
background-color: rgb(var(--color-surface-700));
|
|
1833
|
-
}
|
|
1834
|
-
|
|
1835
|
-
.checkbox,.radio{
|
|
1836
|
-
background-color:rgb(var(--color-surface-200))
|
|
1837
|
-
}
|
|
1838
|
-
|
|
1839
|
-
.dark .checkbox,.dark .radio{
|
|
1840
|
-
background-color:rgb(var(--color-surface-700))
|
|
1841
|
-
}
|
|
1842
|
-
|
|
1843
|
-
.checkbox:hover,.radio:hover {
|
|
1844
|
-
--tw-brightness: brightness(1.05);
|
|
1845
|
-
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);
|
|
1846
|
-
}
|
|
1847
|
-
|
|
1848
|
-
.checkbox:focus,.radio:focus {
|
|
1849
|
-
--tw-brightness: brightness(1.05);
|
|
1850
|
-
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);
|
|
1851
|
-
}
|
|
1852
|
-
|
|
1853
|
-
.checkbox,.radio {
|
|
1854
|
-
border-width: var(--theme-border-base);
|
|
1855
|
-
border-color: rgb(var(--color-surface-400));
|
|
1856
|
-
}
|
|
1857
|
-
|
|
1858
|
-
.dark .checkbox,.dark .radio {
|
|
1859
|
-
border-color: rgb(var(--color-surface-500));
|
|
1860
|
-
}
|
|
1861
|
-
|
|
1862
|
-
.checkbox,.radio{
|
|
1863
|
-
border-width:var(--theme-border-base);
|
|
1864
|
-
border-color:rgb(var(--color-surface-400))
|
|
1865
|
-
}
|
|
1866
|
-
|
|
1867
|
-
.dark .checkbox,.dark .radio{
|
|
1868
|
-
border-color:rgb(var(--color-surface-500))
|
|
1869
|
-
}
|
|
1870
|
-
|
|
1871
|
-
.checkbox:focus,.radio:focus {
|
|
1872
|
-
--tw-border-opacity: 1;
|
|
1873
|
-
border-color: rgb(var(--color-primary-500) / var(--tw-border-opacity));
|
|
1874
|
-
}
|
|
1875
|
-
|
|
1876
|
-
.checkbox:checked,.radio:checked {
|
|
1877
|
-
--tw-bg-opacity: 1;
|
|
1878
|
-
background-color: rgb(var(--color-primary-500) / var(--tw-bg-opacity));
|
|
1879
|
-
}
|
|
1880
|
-
|
|
1881
|
-
.checkbox:checked:hover,.radio:checked:hover {
|
|
1882
|
-
--tw-bg-opacity: 1;
|
|
1883
|
-
background-color: rgb(var(--color-primary-500) / var(--tw-bg-opacity));
|
|
1884
|
-
}
|
|
1885
|
-
|
|
1886
|
-
.checkbox:checked:focus,.radio:checked:focus {
|
|
1887
|
-
--tw-bg-opacity: 1;
|
|
1888
|
-
background-color: rgb(var(--color-primary-500) / var(--tw-bg-opacity));
|
|
1889
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1890
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1891
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1892
|
-
}
|
|
1893
|
-
|
|
1894
|
-
.radio {
|
|
1895
|
-
border-radius:var(--theme-rounded-base);
|
|
1896
|
-
}
|
|
1897
|
-
|
|
1898
|
-
.input[type='file'] {
|
|
1899
|
-
padding:.25rem;
|
|
1900
|
-
}
|
|
1901
|
-
|
|
1902
|
-
.input[type='color'] {
|
|
1903
|
-
height: 2.5rem;
|
|
1904
|
-
width: 2.5rem;
|
|
1905
|
-
border-style: none;
|
|
1906
|
-
cursor:pointer;
|
|
1907
|
-
overflow:hidden;
|
|
1908
|
-
border-radius:var(--theme-rounded-base);
|
|
1909
|
-
-webkit-appearance: none ;
|
|
1910
|
-
}
|
|
1911
|
-
|
|
1912
|
-
.input[type='color']::-webkit-color-swatch-wrapper {
|
|
1913
|
-
padding: 0px;
|
|
1914
|
-
}
|
|
1915
|
-
|
|
1916
|
-
.input[type='color']::-webkit-color-swatch {
|
|
1917
|
-
border-style: none;
|
|
1918
|
-
}
|
|
1919
|
-
|
|
1920
|
-
.input[type='color']:hover::-webkit-color-swatch {
|
|
1921
|
-
--tw-brightness: brightness(1.1);
|
|
1922
|
-
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);
|
|
1923
|
-
}
|
|
1924
|
-
|
|
1925
|
-
.input[type='color']::-moz-color-swatch {
|
|
1926
|
-
border-style: none;
|
|
1927
|
-
}
|
|
1928
|
-
|
|
1929
|
-
.input:disabled,.textarea:disabled,.select:disabled {
|
|
1930
|
-
cursor: not-allowed !important;
|
|
1931
|
-
opacity: 0.5 !important;
|
|
1932
|
-
}
|
|
1933
|
-
|
|
1934
|
-
.input:disabled:hover,.textarea:disabled:hover,.select:disabled:hover {
|
|
1935
|
-
--tw-brightness: brightness(1) !important;
|
|
1936
|
-
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) !important;
|
|
1937
|
-
}
|
|
1938
|
-
|
|
1939
|
-
.input[readonly],.textarea[readonly],.select[readonly] {
|
|
1940
|
-
cursor: not-allowed !important;
|
|
1941
|
-
border-width: 0px !important;
|
|
1942
|
-
}
|
|
1943
|
-
|
|
1944
|
-
.input[readonly]:hover,.textarea[readonly]:hover,.select[readonly]:hover {
|
|
1945
|
-
--tw-brightness: brightness(1) !important;
|
|
1946
|
-
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) !important;
|
|
1947
|
-
}
|
|
1948
|
-
|
|
1949
1495
|
.list,.list-dl,.list-nav ul {
|
|
1950
1496
|
list-style-type: none;
|
|
1951
1497
|
}
|
|
@@ -2865,18 +2411,10 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
2865
2411
|
display: grid;
|
|
2866
2412
|
}
|
|
2867
2413
|
|
|
2868
|
-
.hidden {
|
|
2869
|
-
display: none;
|
|
2870
|
-
}
|
|
2871
|
-
|
|
2872
2414
|
.aspect-square {
|
|
2873
2415
|
aspect-ratio: 1 / 1;
|
|
2874
2416
|
}
|
|
2875
2417
|
|
|
2876
|
-
.h-0 {
|
|
2877
|
-
height: 0px;
|
|
2878
|
-
}
|
|
2879
|
-
|
|
2880
2418
|
.h-6 {
|
|
2881
2419
|
height: 1.5rem;
|
|
2882
2420
|
}
|
|
@@ -2893,10 +2431,6 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
2893
2431
|
max-height: 16rem;
|
|
2894
2432
|
}
|
|
2895
2433
|
|
|
2896
|
-
.w-0 {
|
|
2897
|
-
width: 0px;
|
|
2898
|
-
}
|
|
2899
|
-
|
|
2900
2434
|
.w-12 {
|
|
2901
2435
|
width: 3rem;
|
|
2902
2436
|
}
|
|
@@ -2952,6 +2486,10 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
2952
2486
|
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));
|
|
2953
2487
|
}
|
|
2954
2488
|
|
|
2489
|
+
.cursor-not-allowed {
|
|
2490
|
+
cursor: not-allowed;
|
|
2491
|
+
}
|
|
2492
|
+
|
|
2955
2493
|
.cursor-pointer {
|
|
2956
2494
|
cursor: pointer;
|
|
2957
2495
|
}
|
|
@@ -2988,14 +2526,12 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
2988
2526
|
gap: 0px;
|
|
2989
2527
|
}
|
|
2990
2528
|
|
|
2991
|
-
.gap-
|
|
2992
|
-
gap:
|
|
2529
|
+
.gap-1 {
|
|
2530
|
+
gap: 0.25rem;
|
|
2993
2531
|
}
|
|
2994
2532
|
|
|
2995
|
-
.
|
|
2996
|
-
|
|
2997
|
-
margin-right: calc(0.25rem * var(--tw-space-x-reverse));
|
|
2998
|
-
margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
|
|
2533
|
+
.gap-4 {
|
|
2534
|
+
gap: 1rem;
|
|
2999
2535
|
}
|
|
3000
2536
|
|
|
3001
2537
|
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
|
|
@@ -3162,6 +2698,10 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
3162
2698
|
color: rgb(255 255 255 / 0.5);
|
|
3163
2699
|
}
|
|
3164
2700
|
|
|
2701
|
+
.opacity-50 {
|
|
2702
|
+
opacity: 0.5;
|
|
2703
|
+
}
|
|
2704
|
+
|
|
3165
2705
|
.shadow {
|
|
3166
2706
|
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
3167
2707
|
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
@@ -4428,35 +3968,79 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
4428
3968
|
--tw-ring-color: rgb(var(--color-surface-400) / 1);
|
|
4429
3969
|
}
|
|
4430
3970
|
|
|
4431
|
-
.hover\:variant-
|
|
4432
|
-
|
|
4433
|
-
--tw-ring-
|
|
4434
|
-
--tw-ring-
|
|
4435
|
-
|
|
4436
|
-
|
|
3971
|
+
.hover\:variant-ghost:hover {
|
|
3972
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
3973
|
+
--tw-ring-inset: inset;
|
|
3974
|
+
--tw-ring-opacity: 1;
|
|
3975
|
+
--tw-ring-color: rgb(var(--color-surface-500) / var(--tw-ring-opacity));
|
|
3976
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
3977
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
3978
|
+
box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000);
|
|
4437
3979
|
}
|
|
4438
3980
|
|
|
4439
|
-
.dark .hover\:variant-
|
|
4440
|
-
|
|
3981
|
+
:is(.dark .hover\:variant-ghost:hover) {
|
|
3982
|
+
--tw-ring-opacity: 1;
|
|
3983
|
+
--tw-ring-color: rgb(var(--color-surface-500) / var(--tw-ring-opacity));
|
|
3984
|
+
}
|
|
3985
|
+
|
|
3986
|
+
.hover\:variant-ghost:hover {
|
|
3987
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
3988
|
+
--tw-ring-inset: inset;
|
|
3989
|
+
--tw-ring-opacity: 1;
|
|
3990
|
+
--tw-ring-color: rgb(var(--color-surface-500) / var(--tw-ring-opacity));
|
|
3991
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
3992
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
3993
|
+
box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000);
|
|
3994
|
+
}
|
|
3995
|
+
|
|
3996
|
+
:is(.dark .hover\:variant-ghost:hover) {
|
|
3997
|
+
--tw-ring-opacity: 1;
|
|
3998
|
+
--tw-ring-color: rgb(var(--color-surface-500) / var(--tw-ring-opacity));
|
|
4441
3999
|
}
|
|
4442
4000
|
|
|
4443
|
-
|
|
4001
|
+
.hover\:variant-ghost:hover {
|
|
4444
4002
|
background-color: rgb(var(--color-surface-500) / 0.2);
|
|
4445
4003
|
}
|
|
4446
4004
|
|
|
4447
|
-
.hover\:variant-
|
|
4448
|
-
background-color: rgb(var(--color-surface-
|
|
4449
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
|
|
4450
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
|
|
4451
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
|
|
4452
|
-
color: rgb(var(--color-surface-700));
|
|
4005
|
+
:is(.dark .hover\:variant-ghost:hover) {
|
|
4006
|
+
background-color: rgb(var(--color-surface-500) / 0.2);
|
|
4453
4007
|
}
|
|
4454
4008
|
|
|
4455
|
-
.
|
|
4456
|
-
|
|
4009
|
+
.hover\:variant-ghost:hover {
|
|
4010
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
4011
|
+
--tw-ring-inset: inset;
|
|
4012
|
+
--tw-ring-opacity: 1;
|
|
4013
|
+
--tw-ring-color: rgb(var(--color-surface-500) / var(--tw-ring-opacity));
|
|
4014
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
4015
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
4016
|
+
box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000);
|
|
4017
|
+
}
|
|
4018
|
+
|
|
4019
|
+
:is(.dark .hover\:variant-ghost:hover) {
|
|
4020
|
+
--tw-ring-opacity: 1;
|
|
4021
|
+
--tw-ring-color: rgb(var(--color-surface-500) / var(--tw-ring-opacity));
|
|
4457
4022
|
}
|
|
4458
4023
|
|
|
4459
|
-
|
|
4024
|
+
.hover\:variant-ghost:hover {
|
|
4025
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
4026
|
+
--tw-ring-inset: inset;
|
|
4027
|
+
--tw-ring-opacity: 1;
|
|
4028
|
+
--tw-ring-color: rgb(var(--color-surface-500) / var(--tw-ring-opacity));
|
|
4029
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
4030
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
4031
|
+
box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000);
|
|
4032
|
+
}
|
|
4033
|
+
|
|
4034
|
+
:is(.dark .hover\:variant-ghost:hover) {
|
|
4035
|
+
--tw-ring-opacity: 1;
|
|
4036
|
+
--tw-ring-color: rgb(var(--color-surface-500) / var(--tw-ring-opacity));
|
|
4037
|
+
}
|
|
4038
|
+
|
|
4039
|
+
.hover\:variant-ghost:hover {
|
|
4040
|
+
background-color: rgb(var(--color-surface-500) / 0.2);
|
|
4041
|
+
}
|
|
4042
|
+
|
|
4043
|
+
:is(.dark .hover\:variant-ghost:hover) {
|
|
4460
4044
|
background-color: rgb(var(--color-surface-500) / 0.2);
|
|
4461
4045
|
}
|
|
4462
4046
|
|
|
@@ -4478,6 +4062,11 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
4478
4062
|
background-color: rgb(var(--color-secondary-500) / 0.1);
|
|
4479
4063
|
}
|
|
4480
4064
|
|
|
4065
|
+
:is(.dark .dark\:text-surface-50) {
|
|
4066
|
+
--tw-text-opacity: 1;
|
|
4067
|
+
color: rgb(var(--color-surface-50) / var(--tw-text-opacity));
|
|
4068
|
+
}
|
|
4069
|
+
|
|
4481
4070
|
@media (min-width: 640px) {
|
|
4482
4071
|
.sm\:w-20 {
|
|
4483
4072
|
width: 5rem;
|
|
@@ -4560,7 +4149,7 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
4560
4149
|
top:0px;
|
|
4561
4150
|
/* max-w-max */
|
|
4562
4151
|
/* Set hidden on page load */
|
|
4563
|
-
display:none;
|
|
4152
|
+
display: none;
|
|
4564
4153
|
/* Transitions */
|
|
4565
4154
|
transition-property: opacity;
|
|
4566
4155
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -5066,18 +4655,10 @@ img,video{
|
|
|
5066
4655
|
display:grid
|
|
5067
4656
|
}
|
|
5068
4657
|
|
|
5069
|
-
.hidden{
|
|
5070
|
-
display:none
|
|
5071
|
-
}
|
|
5072
|
-
|
|
5073
4658
|
.aspect-square{
|
|
5074
4659
|
aspect-ratio:1 / 1
|
|
5075
4660
|
}
|
|
5076
4661
|
|
|
5077
|
-
.h-0{
|
|
5078
|
-
height:0px
|
|
5079
|
-
}
|
|
5080
|
-
|
|
5081
4662
|
.h-6{
|
|
5082
4663
|
height:1.5rem
|
|
5083
4664
|
}
|
|
@@ -5094,10 +4675,6 @@ img,video{
|
|
|
5094
4675
|
max-height:16rem
|
|
5095
4676
|
}
|
|
5096
4677
|
|
|
5097
|
-
.w-0{
|
|
5098
|
-
width:0px
|
|
5099
|
-
}
|
|
5100
|
-
|
|
5101
4678
|
.w-12{
|
|
5102
4679
|
width:3rem
|
|
5103
4680
|
}
|
|
@@ -5153,6 +4730,10 @@ img,video{
|
|
|
5153
4730
|
transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
|
|
5154
4731
|
}
|
|
5155
4732
|
|
|
4733
|
+
.cursor-not-allowed{
|
|
4734
|
+
cursor:not-allowed
|
|
4735
|
+
}
|
|
4736
|
+
|
|
5156
4737
|
.cursor-pointer{
|
|
5157
4738
|
cursor:pointer
|
|
5158
4739
|
}
|
|
@@ -5189,14 +4770,12 @@ img,video{
|
|
|
5189
4770
|
gap:0px
|
|
5190
4771
|
}
|
|
5191
4772
|
|
|
5192
|
-
.gap-
|
|
5193
|
-
gap
|
|
4773
|
+
.gap-1{
|
|
4774
|
+
gap:.25rem
|
|
5194
4775
|
}
|
|
5195
4776
|
|
|
5196
|
-
.
|
|
5197
|
-
|
|
5198
|
-
margin-right:calc(.25rem * var(--tw-space-x-reverse));
|
|
5199
|
-
margin-left:calc(.25rem * calc(1 - var(--tw-space-x-reverse)))
|
|
4777
|
+
.gap-4{
|
|
4778
|
+
gap:1rem
|
|
5200
4779
|
}
|
|
5201
4780
|
|
|
5202
4781
|
.space-y-1>:not([hidden])~:not([hidden]){
|
|
@@ -5363,6 +4942,10 @@ img,video{
|
|
|
5363
4942
|
color:#ffffff80
|
|
5364
4943
|
}
|
|
5365
4944
|
|
|
4945
|
+
.opacity-50{
|
|
4946
|
+
opacity:.5
|
|
4947
|
+
}
|
|
4948
|
+
|
|
5366
4949
|
.shadow{
|
|
5367
4950
|
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);
|
|
5368
4951
|
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
@@ -6647,6 +6230,11 @@ img,video{
|
|
|
6647
6230
|
background-color:rgb(var(--color-secondary-500) / .1)
|
|
6648
6231
|
}
|
|
6649
6232
|
|
|
6233
|
+
:is(.dark .dark\:text-surface-50){
|
|
6234
|
+
--tw-text-opacity: 1;
|
|
6235
|
+
color:rgb(var(--color-surface-50) / var(--tw-text-opacity))
|
|
6236
|
+
}
|
|
6237
|
+
|
|
6650
6238
|
@media (min-width: 640px){
|
|
6651
6239
|
.sm\:w-20{
|
|
6652
6240
|
width:5rem
|