hds-web 0.1.4 → 0.1.6
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/index.css +1 -1
- package/dist/index.es.css +1 -1
- package/dist/index.es.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/HDS/assets/hasura 2.svg +4 -0
- package/src/HDS/assets/hasura.svg +4 -0
- package/src/HDS/assets/icons/chevron-right.svg +1 -1
- package/src/HDS/assets/icons/hasura.svg +10 -3
- package/src/HDS/assets/icons/minus-01.svg +1 -1
- package/src/HDS/components/Avatars/hasConAv.js +3 -3
- package/src/HDS/components/Buttons/button.js +25 -9
- package/src/HDS/components/Carousels/carousel.js +1 -1
- package/src/HDS/components/Carousels/carouselCard.js +46 -11
- package/src/HDS/components/common-components/Card/copyCard.js +2 -2
- package/src/HDS/foundation/Typography/Typography.js +35 -35
- package/src/HDS/helpers/Time/index.js +1 -0
- package/src/HDS/helpers/Time/time.js +97 -0
- package/src/styles/tailwind.css +426 -398
- package/tailwind.config.js +22 -6
package/src/styles/tailwind.css
CHANGED
@@ -42,7 +42,7 @@ html {
|
|
42
42
|
/* 3 */
|
43
43
|
tab-size: 4;
|
44
44
|
/* 3 */
|
45
|
-
font-family:
|
45
|
+
font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
46
46
|
/* 4 */
|
47
47
|
-webkit-font-feature-settings: normal;
|
48
48
|
font-feature-settings: normal;
|
@@ -747,6 +747,12 @@ select {
|
|
747
747
|
}
|
748
748
|
}
|
749
749
|
|
750
|
+
@media (min-width: 905px) {
|
751
|
+
.container {
|
752
|
+
max-width: 905px;
|
753
|
+
}
|
754
|
+
}
|
755
|
+
|
750
756
|
@media (min-width: 1024px) {
|
751
757
|
.container {
|
752
758
|
max-width: 1024px;
|
@@ -771,6 +777,12 @@ select {
|
|
771
777
|
}
|
772
778
|
}
|
773
779
|
|
780
|
+
@media (min-width: 2560px) {
|
781
|
+
.container {
|
782
|
+
max-width: 2560px;
|
783
|
+
}
|
784
|
+
}
|
785
|
+
|
774
786
|
.sr-only {
|
775
787
|
position: absolute;
|
776
788
|
width: 1px;
|
@@ -1116,6 +1128,14 @@ select {
|
|
1116
1128
|
margin-top: -1rem;
|
1117
1129
|
}
|
1118
1130
|
|
1131
|
+
.-mt-5 {
|
1132
|
+
margin-top: -1.25rem;
|
1133
|
+
}
|
1134
|
+
|
1135
|
+
.-mt-6 {
|
1136
|
+
margin-top: -1.5rem;
|
1137
|
+
}
|
1138
|
+
|
1119
1139
|
.mb-2 {
|
1120
1140
|
margin-bottom: 0.5rem;
|
1121
1141
|
}
|
@@ -1288,6 +1308,10 @@ select {
|
|
1288
1308
|
height: 1.25rem;
|
1289
1309
|
}
|
1290
1310
|
|
1311
|
+
.h-52 {
|
1312
|
+
height: 13rem;
|
1313
|
+
}
|
1314
|
+
|
1291
1315
|
.h-6 {
|
1292
1316
|
height: 1.5rem;
|
1293
1317
|
}
|
@@ -1813,6 +1837,10 @@ select {
|
|
1813
1837
|
white-space: pre-line;
|
1814
1838
|
}
|
1815
1839
|
|
1840
|
+
.whitespace-pre-wrap {
|
1841
|
+
white-space: pre-wrap;
|
1842
|
+
}
|
1843
|
+
|
1816
1844
|
.rounded {
|
1817
1845
|
border-radius: 0.25rem;
|
1818
1846
|
}
|
@@ -2013,121 +2041,6 @@ select {
|
|
2013
2041
|
background-color: rgb(51 51 51 / var(--tw-bg-opacity));
|
2014
2042
|
}
|
2015
2043
|
|
2016
|
-
.bg-amber-600 {
|
2017
|
-
--tw-bg-opacity: 1;
|
2018
|
-
background-color: rgb(184 88 0 / var(--tw-bg-opacity));
|
2019
|
-
}
|
2020
|
-
|
2021
|
-
.bg-blue-100 {
|
2022
|
-
--tw-bg-opacity: 1;
|
2023
|
-
background-color: rgb(240 244 255 / var(--tw-bg-opacity));
|
2024
|
-
}
|
2025
|
-
|
2026
|
-
.bg-blue-200 {
|
2027
|
-
--tw-bg-opacity: 1;
|
2028
|
-
background-color: rgb(223 232 255 / var(--tw-bg-opacity));
|
2029
|
-
}
|
2030
|
-
|
2031
|
-
.bg-blue-400 {
|
2032
|
-
--tw-bg-opacity: 1;
|
2033
|
-
background-color: rgb(128 163 255 / var(--tw-bg-opacity));
|
2034
|
-
}
|
2035
|
-
|
2036
|
-
.bg-blue-500 {
|
2037
|
-
--tw-bg-opacity: 1;
|
2038
|
-
background-color: rgb(57 112 253 / var(--tw-bg-opacity));
|
2039
|
-
}
|
2040
|
-
|
2041
|
-
.bg-blue-600 {
|
2042
|
-
--tw-bg-opacity: 1;
|
2043
|
-
background-color: rgb(30 86 227 / var(--tw-bg-opacity));
|
2044
|
-
}
|
2045
|
-
|
2046
|
-
.bg-blue-800 {
|
2047
|
-
--tw-bg-opacity: 1;
|
2048
|
-
background-color: rgb(0 40 142 / var(--tw-bg-opacity));
|
2049
|
-
}
|
2050
|
-
|
2051
|
-
.bg-cyan-600 {
|
2052
|
-
--tw-bg-opacity: 1;
|
2053
|
-
background-color: rgb(4 117 141 / var(--tw-bg-opacity));
|
2054
|
-
}
|
2055
|
-
|
2056
|
-
.bg-green-100 {
|
2057
|
-
--tw-bg-opacity: 1;
|
2058
|
-
background-color: rgb(218 255 244 / var(--tw-bg-opacity));
|
2059
|
-
}
|
2060
|
-
|
2061
|
-
.bg-green-400 {
|
2062
|
-
--tw-bg-opacity: 1;
|
2063
|
-
background-color: rgb(57 218 170 / var(--tw-bg-opacity));
|
2064
|
-
}
|
2065
|
-
|
2066
|
-
.bg-green-600 {
|
2067
|
-
--tw-bg-opacity: 1;
|
2068
|
-
background-color: rgb(2 125 89 / var(--tw-bg-opacity));
|
2069
|
-
}
|
2070
|
-
|
2071
|
-
.bg-neutral-0 {
|
2072
|
-
--tw-bg-opacity: 1;
|
2073
|
-
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
2074
|
-
}
|
2075
|
-
|
2076
|
-
.bg-neutral-100 {
|
2077
|
-
--tw-bg-opacity: 1;
|
2078
|
-
background-color: rgb(243 244 246 / var(--tw-bg-opacity));
|
2079
|
-
}
|
2080
|
-
|
2081
|
-
.bg-neutral-200 {
|
2082
|
-
--tw-bg-opacity: 1;
|
2083
|
-
background-color: rgb(229 231 235 / var(--tw-bg-opacity));
|
2084
|
-
}
|
2085
|
-
|
2086
|
-
.bg-neutral-50 {
|
2087
|
-
--tw-bg-opacity: 1;
|
2088
|
-
background-color: rgb(249 250 251 / var(--tw-bg-opacity));
|
2089
|
-
}
|
2090
|
-
|
2091
|
-
.bg-neutral-500 {
|
2092
|
-
--tw-bg-opacity: 1;
|
2093
|
-
background-color: rgb(108 115 127 / var(--tw-bg-opacity));
|
2094
|
-
}
|
2095
|
-
|
2096
|
-
.bg-neutral-600 {
|
2097
|
-
--tw-bg-opacity: 1;
|
2098
|
-
background-color: rgb(77 87 97 / var(--tw-bg-opacity));
|
2099
|
-
}
|
2100
|
-
|
2101
|
-
.bg-neutral-900 {
|
2102
|
-
--tw-bg-opacity: 1;
|
2103
|
-
background-color: rgb(17 25 39 / var(--tw-bg-opacity));
|
2104
|
-
}
|
2105
|
-
|
2106
|
-
.bg-pink-400 {
|
2107
|
-
--tw-bg-opacity: 1;
|
2108
|
-
background-color: rgb(246 119 170 / var(--tw-bg-opacity));
|
2109
|
-
}
|
2110
|
-
|
2111
|
-
.bg-pink-600 {
|
2112
|
-
--tw-bg-opacity: 1;
|
2113
|
-
background-color: rgb(194 30 95 / var(--tw-bg-opacity));
|
2114
|
-
}
|
2115
|
-
|
2116
|
-
.bg-purple-500 {
|
2117
|
-
--tw-bg-opacity: 1;
|
2118
|
-
background-color: rgb(140 73 250 / var(--tw-bg-opacity));
|
2119
|
-
}
|
2120
|
-
|
2121
|
-
.bg-purple-600 {
|
2122
|
-
--tw-bg-opacity: 1;
|
2123
|
-
background-color: rgb(113 43 227 / var(--tw-bg-opacity));
|
2124
|
-
}
|
2125
|
-
|
2126
|
-
.bg-storybook-default-heading {
|
2127
|
-
--tw-bg-opacity: 1;
|
2128
|
-
background-color: rgb(17 27 41 / var(--tw-bg-opacity));
|
2129
|
-
}
|
2130
|
-
|
2131
2044
|
.bg-amber-100 {
|
2132
2045
|
--tw-bg-opacity: 1;
|
2133
2046
|
background-color: rgb(255 243 212 / var(--tw-bg-opacity));
|
@@ -2153,6 +2066,11 @@ select {
|
|
2153
2066
|
background-color: rgb(224 121 0 / var(--tw-bg-opacity));
|
2154
2067
|
}
|
2155
2068
|
|
2069
|
+
.bg-amber-600 {
|
2070
|
+
--tw-bg-opacity: 1;
|
2071
|
+
background-color: rgb(184 88 0 / var(--tw-bg-opacity));
|
2072
|
+
}
|
2073
|
+
|
2156
2074
|
.bg-amber-700 {
|
2157
2075
|
--tw-bg-opacity: 1;
|
2158
2076
|
background-color: rgb(153 55 0 / var(--tw-bg-opacity));
|
@@ -2178,16 +2096,46 @@ select {
|
|
2178
2096
|
background-color: rgb(0 6 21 / var(--tw-bg-opacity));
|
2179
2097
|
}
|
2180
2098
|
|
2099
|
+
.bg-blue-100 {
|
2100
|
+
--tw-bg-opacity: 1;
|
2101
|
+
background-color: rgb(240 244 255 / var(--tw-bg-opacity));
|
2102
|
+
}
|
2103
|
+
|
2104
|
+
.bg-blue-200 {
|
2105
|
+
--tw-bg-opacity: 1;
|
2106
|
+
background-color: rgb(223 232 255 / var(--tw-bg-opacity));
|
2107
|
+
}
|
2108
|
+
|
2181
2109
|
.bg-blue-300 {
|
2182
2110
|
--tw-bg-opacity: 1;
|
2183
2111
|
background-color: rgb(198 214 255 / var(--tw-bg-opacity));
|
2184
2112
|
}
|
2185
2113
|
|
2114
|
+
.bg-blue-400 {
|
2115
|
+
--tw-bg-opacity: 1;
|
2116
|
+
background-color: rgb(128 163 255 / var(--tw-bg-opacity));
|
2117
|
+
}
|
2118
|
+
|
2119
|
+
.bg-blue-500 {
|
2120
|
+
--tw-bg-opacity: 1;
|
2121
|
+
background-color: rgb(57 112 253 / var(--tw-bg-opacity));
|
2122
|
+
}
|
2123
|
+
|
2124
|
+
.bg-blue-600 {
|
2125
|
+
--tw-bg-opacity: 1;
|
2126
|
+
background-color: rgb(30 86 227 / var(--tw-bg-opacity));
|
2127
|
+
}
|
2128
|
+
|
2186
2129
|
.bg-blue-700 {
|
2187
2130
|
--tw-bg-opacity: 1;
|
2188
2131
|
background-color: rgb(13 65 198 / var(--tw-bg-opacity));
|
2189
2132
|
}
|
2190
2133
|
|
2134
|
+
.bg-blue-800 {
|
2135
|
+
--tw-bg-opacity: 1;
|
2136
|
+
background-color: rgb(0 40 142 / var(--tw-bg-opacity));
|
2137
|
+
}
|
2138
|
+
|
2191
2139
|
.bg-blue-900 {
|
2192
2140
|
--tw-bg-opacity: 1;
|
2193
2141
|
background-color: rgb(0 28 99 / var(--tw-bg-opacity));
|
@@ -2218,6 +2166,11 @@ select {
|
|
2218
2166
|
background-color: rgb(14 150 178 / var(--tw-bg-opacity));
|
2219
2167
|
}
|
2220
2168
|
|
2169
|
+
.bg-cyan-600 {
|
2170
|
+
--tw-bg-opacity: 1;
|
2171
|
+
background-color: rgb(4 117 141 / var(--tw-bg-opacity));
|
2172
|
+
}
|
2173
|
+
|
2221
2174
|
.bg-cyan-700 {
|
2222
2175
|
--tw-bg-opacity: 1;
|
2223
2176
|
background-color: rgb(0 90 108 / var(--tw-bg-opacity));
|
@@ -2233,6 +2186,11 @@ select {
|
|
2233
2186
|
background-color: rgb(0 35 43 / var(--tw-bg-opacity));
|
2234
2187
|
}
|
2235
2188
|
|
2189
|
+
.bg-green-100 {
|
2190
|
+
--tw-bg-opacity: 1;
|
2191
|
+
background-color: rgb(218 255 244 / var(--tw-bg-opacity));
|
2192
|
+
}
|
2193
|
+
|
2236
2194
|
.bg-green-200 {
|
2237
2195
|
--tw-bg-opacity: 1;
|
2238
2196
|
background-color: rgb(184 251 231 / var(--tw-bg-opacity));
|
@@ -2243,11 +2201,21 @@ select {
|
|
2243
2201
|
background-color: rgb(145 245 215 / var(--tw-bg-opacity));
|
2244
2202
|
}
|
2245
2203
|
|
2204
|
+
.bg-green-400 {
|
2205
|
+
--tw-bg-opacity: 1;
|
2206
|
+
background-color: rgb(57 218 170 / var(--tw-bg-opacity));
|
2207
|
+
}
|
2208
|
+
|
2246
2209
|
.bg-green-500 {
|
2247
2210
|
--tw-bg-opacity: 1;
|
2248
2211
|
background-color: rgb(14 165 120 / var(--tw-bg-opacity));
|
2249
2212
|
}
|
2250
2213
|
|
2214
|
+
.bg-green-600 {
|
2215
|
+
--tw-bg-opacity: 1;
|
2216
|
+
background-color: rgb(2 125 89 / var(--tw-bg-opacity));
|
2217
|
+
}
|
2218
|
+
|
2251
2219
|
.bg-green-700 {
|
2252
2220
|
--tw-bg-opacity: 1;
|
2253
2221
|
background-color: rgb(0 96 67 / var(--tw-bg-opacity));
|
@@ -2263,6 +2231,16 @@ select {
|
|
2263
2231
|
background-color: rgb(0 40 29 / var(--tw-bg-opacity));
|
2264
2232
|
}
|
2265
2233
|
|
2234
|
+
.bg-neutral-0 {
|
2235
|
+
--tw-bg-opacity: 1;
|
2236
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
2237
|
+
}
|
2238
|
+
|
2239
|
+
.bg-neutral-100 {
|
2240
|
+
--tw-bg-opacity: 1;
|
2241
|
+
background-color: rgb(243 244 246 / var(--tw-bg-opacity));
|
2242
|
+
}
|
2243
|
+
|
2266
2244
|
.bg-neutral-1000 {
|
2267
2245
|
--tw-bg-opacity: 1;
|
2268
2246
|
background-color: rgb(0 6 21 / var(--tw-bg-opacity));
|
@@ -2273,6 +2251,11 @@ select {
|
|
2273
2251
|
background-color: rgb(236 237 240 / var(--tw-bg-opacity));
|
2274
2252
|
}
|
2275
2253
|
|
2254
|
+
.bg-neutral-200 {
|
2255
|
+
--tw-bg-opacity: 1;
|
2256
|
+
background-color: rgb(229 231 235 / var(--tw-bg-opacity));
|
2257
|
+
}
|
2258
|
+
|
2276
2259
|
.bg-neutral-300 {
|
2277
2260
|
--tw-bg-opacity: 1;
|
2278
2261
|
background-color: rgb(210 214 219 / var(--tw-bg-opacity));
|
@@ -2283,6 +2266,21 @@ select {
|
|
2283
2266
|
background-color: rgb(157 164 174 / var(--tw-bg-opacity));
|
2284
2267
|
}
|
2285
2268
|
|
2269
|
+
.bg-neutral-50 {
|
2270
|
+
--tw-bg-opacity: 1;
|
2271
|
+
background-color: rgb(249 250 251 / var(--tw-bg-opacity));
|
2272
|
+
}
|
2273
|
+
|
2274
|
+
.bg-neutral-500 {
|
2275
|
+
--tw-bg-opacity: 1;
|
2276
|
+
background-color: rgb(108 115 127 / var(--tw-bg-opacity));
|
2277
|
+
}
|
2278
|
+
|
2279
|
+
.bg-neutral-600 {
|
2280
|
+
--tw-bg-opacity: 1;
|
2281
|
+
background-color: rgb(77 87 97 / var(--tw-bg-opacity));
|
2282
|
+
}
|
2283
|
+
|
2286
2284
|
.bg-neutral-700 {
|
2287
2285
|
--tw-bg-opacity: 1;
|
2288
2286
|
background-color: rgb(56 66 80 / var(--tw-bg-opacity));
|
@@ -2298,6 +2296,11 @@ select {
|
|
2298
2296
|
background-color: rgb(24 34 47 / var(--tw-bg-opacity));
|
2299
2297
|
}
|
2300
2298
|
|
2299
|
+
.bg-neutral-900 {
|
2300
|
+
--tw-bg-opacity: 1;
|
2301
|
+
background-color: rgb(17 25 39 / var(--tw-bg-opacity));
|
2302
|
+
}
|
2303
|
+
|
2301
2304
|
.bg-neutral-950 {
|
2302
2305
|
--tw-bg-opacity: 1;
|
2303
2306
|
background-color: rgb(13 20 32 / var(--tw-bg-opacity));
|
@@ -2358,11 +2361,21 @@ select {
|
|
2358
2361
|
background-color: rgb(255 188 214 / var(--tw-bg-opacity));
|
2359
2362
|
}
|
2360
2363
|
|
2364
|
+
.bg-pink-400 {
|
2365
|
+
--tw-bg-opacity: 1;
|
2366
|
+
background-color: rgb(246 119 170 / var(--tw-bg-opacity));
|
2367
|
+
}
|
2368
|
+
|
2361
2369
|
.bg-pink-500 {
|
2362
2370
|
--tw-bg-opacity: 1;
|
2363
2371
|
background-color: rgb(225 58 124 / var(--tw-bg-opacity));
|
2364
2372
|
}
|
2365
2373
|
|
2374
|
+
.bg-pink-600 {
|
2375
|
+
--tw-bg-opacity: 1;
|
2376
|
+
background-color: rgb(194 30 95 / var(--tw-bg-opacity));
|
2377
|
+
}
|
2378
|
+
|
2366
2379
|
.bg-pink-700 {
|
2367
2380
|
--tw-bg-opacity: 1;
|
2368
2381
|
background-color: rgb(165 10 72 / var(--tw-bg-opacity));
|
@@ -2398,6 +2411,16 @@ select {
|
|
2398
2411
|
background-color: rgb(180 135 255 / var(--tw-bg-opacity));
|
2399
2412
|
}
|
2400
2413
|
|
2414
|
+
.bg-purple-500 {
|
2415
|
+
--tw-bg-opacity: 1;
|
2416
|
+
background-color: rgb(140 73 250 / var(--tw-bg-opacity));
|
2417
|
+
}
|
2418
|
+
|
2419
|
+
.bg-purple-600 {
|
2420
|
+
--tw-bg-opacity: 1;
|
2421
|
+
background-color: rgb(113 43 227 / var(--tw-bg-opacity));
|
2422
|
+
}
|
2423
|
+
|
2401
2424
|
.bg-purple-700 {
|
2402
2425
|
--tw-bg-opacity: 1;
|
2403
2426
|
background-color: rgb(94 19 215 / var(--tw-bg-opacity));
|
@@ -2453,6 +2476,11 @@ select {
|
|
2453
2476
|
background-color: rgb(152 26 30 / var(--tw-bg-opacity));
|
2454
2477
|
}
|
2455
2478
|
|
2479
|
+
.bg-storybook-default-heading {
|
2480
|
+
--tw-bg-opacity: 1;
|
2481
|
+
background-color: rgb(17 27 41 / var(--tw-bg-opacity));
|
2482
|
+
}
|
2483
|
+
|
2456
2484
|
.bg-yellow-100 {
|
2457
2485
|
--tw-bg-opacity: 1;
|
2458
2486
|
background-color: rgb(255 249 199 / var(--tw-bg-opacity));
|
@@ -2493,6 +2521,10 @@ select {
|
|
2493
2521
|
background-color: rgb(133 77 24 / var(--tw-bg-opacity));
|
2494
2522
|
}
|
2495
2523
|
|
2524
|
+
.stroke-\[1\.5px\] {
|
2525
|
+
stroke-width: 1.5px;
|
2526
|
+
}
|
2527
|
+
|
2496
2528
|
.object-contain {
|
2497
2529
|
object-fit: contain;
|
2498
2530
|
}
|
@@ -2944,193 +2976,78 @@ select {
|
|
2944
2976
|
letter-spacing: -0.02em;
|
2945
2977
|
font-weight: 700;
|
2946
2978
|
}
|
2947
|
-
|
2948
|
-
.text-hds-m-h4 {
|
2949
|
-
font-size: 1.25rem;
|
2950
|
-
line-height: 2rem;
|
2951
|
-
letter-spacing: -0.02em;
|
2952
|
-
font-weight: 600;
|
2953
|
-
}
|
2954
|
-
|
2955
|
-
.text-hds-m-h5 {
|
2956
|
-
font-size: 1.125rem;
|
2957
|
-
line-height: 1.75rem;
|
2958
|
-
letter-spacing: -0.02em;
|
2959
|
-
font-weight: 600;
|
2960
|
-
}
|
2961
|
-
|
2962
|
-
.text-hds-m-h6 {
|
2963
|
-
font-size: 0.75rem;
|
2964
|
-
line-height: 1.25rem;
|
2965
|
-
letter-spacing: 0.08em;
|
2966
|
-
font-weight: 700;
|
2967
|
-
}
|
2968
|
-
|
2969
|
-
.text-hds-m-quote {
|
2970
|
-
font-size: 1.125rem;
|
2971
|
-
line-height: 1.75rem;
|
2972
|
-
letter-spacing: -0.01em;
|
2973
|
-
font-weight: 400;
|
2974
|
-
}
|
2975
|
-
|
2976
|
-
.text-hds-m-sub1 {
|
2977
|
-
font-size: 1.25rem;
|
2978
|
-
line-height: 2rem;
|
2979
|
-
letter-spacing: -0.01em;
|
2980
|
-
font-weight: 400;
|
2981
|
-
}
|
2982
|
-
|
2983
|
-
.text-hds-m-sub2 {
|
2984
|
-
font-size: 1.125rem;
|
2985
|
-
line-height: 1.75rem;
|
2986
|
-
letter-spacing: -0.01em;
|
2987
|
-
font-weight: 400;
|
2988
|
-
}
|
2989
|
-
|
2990
|
-
.text-sm {
|
2991
|
-
font-size: 0.875rem;
|
2992
|
-
line-height: 1.25rem;
|
2993
|
-
}
|
2994
|
-
|
2995
|
-
.text-xl {
|
2996
|
-
font-size: 1.25rem;
|
2997
|
-
line-height: 1.75rem;
|
2998
|
-
}
|
2999
|
-
|
3000
|
-
.text-xs {
|
3001
|
-
font-size: 0.75rem;
|
3002
|
-
line-height: 1rem;
|
3003
|
-
}
|
3004
|
-
|
3005
|
-
.font-medium {
|
3006
|
-
font-weight: 500;
|
3007
|
-
}
|
3008
|
-
|
3009
|
-
.font-semibold {
|
3010
|
-
font-weight: 600;
|
3011
|
-
}
|
3012
|
-
|
3013
|
-
.italic {
|
3014
|
-
font-style: italic;
|
3015
|
-
}
|
3016
|
-
|
3017
|
-
.not-italic {
|
3018
|
-
font-style: normal;
|
3019
|
-
}
|
3020
|
-
|
3021
|
-
.text-amber-800 {
|
3022
|
-
--tw-text-opacity: 1;
|
3023
|
-
color: rgb(120 36 0 / var(--tw-text-opacity));
|
3024
|
-
}
|
3025
|
-
|
3026
|
-
.text-blue-400 {
|
3027
|
-
--tw-text-opacity: 1;
|
3028
|
-
color: rgb(128 163 255 / var(--tw-text-opacity));
|
3029
|
-
}
|
3030
|
-
|
3031
|
-
.text-blue-500 {
|
3032
|
-
--tw-text-opacity: 1;
|
3033
|
-
color: rgb(57 112 253 / var(--tw-text-opacity));
|
3034
|
-
}
|
3035
|
-
|
3036
|
-
.text-blue-600 {
|
3037
|
-
--tw-text-opacity: 1;
|
3038
|
-
color: rgb(30 86 227 / var(--tw-text-opacity));
|
3039
|
-
}
|
3040
|
-
|
3041
|
-
.text-blue-700 {
|
3042
|
-
--tw-text-opacity: 1;
|
3043
|
-
color: rgb(13 65 198 / var(--tw-text-opacity));
|
3044
|
-
}
|
3045
|
-
|
3046
|
-
.text-blue-800 {
|
3047
|
-
--tw-text-opacity: 1;
|
3048
|
-
color: rgb(0 40 142 / var(--tw-text-opacity));
|
3049
|
-
}
|
3050
|
-
|
3051
|
-
.text-cyan-800 {
|
3052
|
-
--tw-text-opacity: 1;
|
3053
|
-
color: rgb(0 57 69 / var(--tw-text-opacity));
|
3054
|
-
}
|
3055
|
-
|
3056
|
-
.text-green-800 {
|
3057
|
-
--tw-text-opacity: 1;
|
3058
|
-
color: rgb(0 60 43 / var(--tw-text-opacity));
|
3059
|
-
}
|
3060
|
-
|
3061
|
-
.text-neutral-0 {
|
3062
|
-
--tw-text-opacity: 1;
|
3063
|
-
color: rgb(255 255 255 / var(--tw-text-opacity));
|
3064
|
-
}
|
3065
|
-
|
3066
|
-
.text-neutral-100 {
|
3067
|
-
--tw-text-opacity: 1;
|
3068
|
-
color: rgb(243 244 246 / var(--tw-text-opacity));
|
3069
|
-
}
|
3070
|
-
|
3071
|
-
.text-neutral-300 {
|
3072
|
-
--tw-text-opacity: 1;
|
3073
|
-
color: rgb(210 214 219 / var(--tw-text-opacity));
|
2979
|
+
|
2980
|
+
.text-hds-m-h4 {
|
2981
|
+
font-size: 1.25rem;
|
2982
|
+
line-height: 2rem;
|
2983
|
+
letter-spacing: -0.02em;
|
2984
|
+
font-weight: 600;
|
3074
2985
|
}
|
3075
2986
|
|
3076
|
-
.text-
|
3077
|
-
|
3078
|
-
|
2987
|
+
.text-hds-m-h5 {
|
2988
|
+
font-size: 1.125rem;
|
2989
|
+
line-height: 1.75rem;
|
2990
|
+
letter-spacing: -0.02em;
|
2991
|
+
font-weight: 600;
|
3079
2992
|
}
|
3080
2993
|
|
3081
|
-
.text-
|
3082
|
-
|
3083
|
-
|
2994
|
+
.text-hds-m-h6 {
|
2995
|
+
font-size: 0.75rem;
|
2996
|
+
line-height: 1.25rem;
|
2997
|
+
letter-spacing: 0.08em;
|
2998
|
+
font-weight: 700;
|
3084
2999
|
}
|
3085
3000
|
|
3086
|
-
.text-
|
3087
|
-
|
3088
|
-
|
3001
|
+
.text-hds-m-quote {
|
3002
|
+
font-size: 1.125rem;
|
3003
|
+
line-height: 1.75rem;
|
3004
|
+
letter-spacing: -0.01em;
|
3005
|
+
font-weight: 400;
|
3089
3006
|
}
|
3090
3007
|
|
3091
|
-
.text-
|
3092
|
-
|
3093
|
-
|
3008
|
+
.text-hds-m-sub1 {
|
3009
|
+
font-size: 1.25rem;
|
3010
|
+
line-height: 2rem;
|
3011
|
+
letter-spacing: -0.01em;
|
3012
|
+
font-weight: 400;
|
3094
3013
|
}
|
3095
3014
|
|
3096
|
-
.text-
|
3097
|
-
|
3098
|
-
|
3015
|
+
.text-hds-m-sub2 {
|
3016
|
+
font-size: 1.125rem;
|
3017
|
+
line-height: 1.75rem;
|
3018
|
+
letter-spacing: -0.01em;
|
3019
|
+
font-weight: 400;
|
3099
3020
|
}
|
3100
3021
|
|
3101
|
-
.text-
|
3102
|
-
|
3103
|
-
|
3022
|
+
.text-sm {
|
3023
|
+
font-size: 0.875rem;
|
3024
|
+
line-height: 1.25rem;
|
3104
3025
|
}
|
3105
3026
|
|
3106
|
-
.text-
|
3107
|
-
|
3108
|
-
|
3027
|
+
.text-xl {
|
3028
|
+
font-size: 1.25rem;
|
3029
|
+
line-height: 1.75rem;
|
3109
3030
|
}
|
3110
3031
|
|
3111
|
-
.text-
|
3112
|
-
|
3113
|
-
|
3032
|
+
.text-xs {
|
3033
|
+
font-size: 0.75rem;
|
3034
|
+
line-height: 1rem;
|
3114
3035
|
}
|
3115
3036
|
|
3116
|
-
.
|
3117
|
-
|
3118
|
-
color: rgb(113 0 44 / var(--tw-text-opacity));
|
3037
|
+
.font-medium {
|
3038
|
+
font-weight: 500;
|
3119
3039
|
}
|
3120
3040
|
|
3121
|
-
.
|
3122
|
-
|
3123
|
-
color: rgb(140 73 250 / var(--tw-text-opacity));
|
3041
|
+
.font-semibold {
|
3042
|
+
font-weight: 600;
|
3124
3043
|
}
|
3125
3044
|
|
3126
|
-
.
|
3127
|
-
|
3128
|
-
color: rgb(63 1 166 / var(--tw-text-opacity));
|
3045
|
+
.italic {
|
3046
|
+
font-style: italic;
|
3129
3047
|
}
|
3130
3048
|
|
3131
|
-
.
|
3132
|
-
|
3133
|
-
color: rgb(17 27 41 / var(--tw-text-opacity));
|
3049
|
+
.not-italic {
|
3050
|
+
font-style: normal;
|
3134
3051
|
}
|
3135
3052
|
|
3136
3053
|
.text-amber-100 {
|
@@ -3168,6 +3085,11 @@ select {
|
|
3168
3085
|
color: rgb(153 55 0 / var(--tw-text-opacity));
|
3169
3086
|
}
|
3170
3087
|
|
3088
|
+
.text-amber-800 {
|
3089
|
+
--tw-text-opacity: 1;
|
3090
|
+
color: rgb(120 36 0 / var(--tw-text-opacity));
|
3091
|
+
}
|
3092
|
+
|
3171
3093
|
.text-amber-900 {
|
3172
3094
|
--tw-text-opacity: 1;
|
3173
3095
|
color: rgb(71 21 0 / var(--tw-text-opacity));
|
@@ -3198,6 +3120,31 @@ select {
|
|
3198
3120
|
color: rgb(198 214 255 / var(--tw-text-opacity));
|
3199
3121
|
}
|
3200
3122
|
|
3123
|
+
.text-blue-400 {
|
3124
|
+
--tw-text-opacity: 1;
|
3125
|
+
color: rgb(128 163 255 / var(--tw-text-opacity));
|
3126
|
+
}
|
3127
|
+
|
3128
|
+
.text-blue-500 {
|
3129
|
+
--tw-text-opacity: 1;
|
3130
|
+
color: rgb(57 112 253 / var(--tw-text-opacity));
|
3131
|
+
}
|
3132
|
+
|
3133
|
+
.text-blue-600 {
|
3134
|
+
--tw-text-opacity: 1;
|
3135
|
+
color: rgb(30 86 227 / var(--tw-text-opacity));
|
3136
|
+
}
|
3137
|
+
|
3138
|
+
.text-blue-700 {
|
3139
|
+
--tw-text-opacity: 1;
|
3140
|
+
color: rgb(13 65 198 / var(--tw-text-opacity));
|
3141
|
+
}
|
3142
|
+
|
3143
|
+
.text-blue-800 {
|
3144
|
+
--tw-text-opacity: 1;
|
3145
|
+
color: rgb(0 40 142 / var(--tw-text-opacity));
|
3146
|
+
}
|
3147
|
+
|
3201
3148
|
.text-blue-900 {
|
3202
3149
|
--tw-text-opacity: 1;
|
3203
3150
|
color: rgb(0 28 99 / var(--tw-text-opacity));
|
@@ -3238,6 +3185,11 @@ select {
|
|
3238
3185
|
color: rgb(0 90 108 / var(--tw-text-opacity));
|
3239
3186
|
}
|
3240
3187
|
|
3188
|
+
.text-cyan-800 {
|
3189
|
+
--tw-text-opacity: 1;
|
3190
|
+
color: rgb(0 57 69 / var(--tw-text-opacity));
|
3191
|
+
}
|
3192
|
+
|
3241
3193
|
.text-cyan-900 {
|
3242
3194
|
--tw-text-opacity: 1;
|
3243
3195
|
color: rgb(0 35 43 / var(--tw-text-opacity));
|
@@ -3278,11 +3230,26 @@ select {
|
|
3278
3230
|
color: rgb(0 96 67 / var(--tw-text-opacity));
|
3279
3231
|
}
|
3280
3232
|
|
3233
|
+
.text-green-800 {
|
3234
|
+
--tw-text-opacity: 1;
|
3235
|
+
color: rgb(0 60 43 / var(--tw-text-opacity));
|
3236
|
+
}
|
3237
|
+
|
3281
3238
|
.text-green-900 {
|
3282
3239
|
--tw-text-opacity: 1;
|
3283
3240
|
color: rgb(0 40 29 / var(--tw-text-opacity));
|
3284
3241
|
}
|
3285
3242
|
|
3243
|
+
.text-neutral-0 {
|
3244
|
+
--tw-text-opacity: 1;
|
3245
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
3246
|
+
}
|
3247
|
+
|
3248
|
+
.text-neutral-100 {
|
3249
|
+
--tw-text-opacity: 1;
|
3250
|
+
color: rgb(243 244 246 / var(--tw-text-opacity));
|
3251
|
+
}
|
3252
|
+
|
3286
3253
|
.text-neutral-1000 {
|
3287
3254
|
--tw-text-opacity: 1;
|
3288
3255
|
color: rgb(0 6 21 / var(--tw-text-opacity));
|
@@ -3298,16 +3265,51 @@ select {
|
|
3298
3265
|
color: rgb(229 231 235 / var(--tw-text-opacity));
|
3299
3266
|
}
|
3300
3267
|
|
3268
|
+
.text-neutral-300 {
|
3269
|
+
--tw-text-opacity: 1;
|
3270
|
+
color: rgb(210 214 219 / var(--tw-text-opacity));
|
3271
|
+
}
|
3272
|
+
|
3273
|
+
.text-neutral-400 {
|
3274
|
+
--tw-text-opacity: 1;
|
3275
|
+
color: rgb(157 164 174 / var(--tw-text-opacity));
|
3276
|
+
}
|
3277
|
+
|
3301
3278
|
.text-neutral-50 {
|
3302
3279
|
--tw-text-opacity: 1;
|
3303
3280
|
color: rgb(249 250 251 / var(--tw-text-opacity));
|
3304
3281
|
}
|
3305
3282
|
|
3283
|
+
.text-neutral-500 {
|
3284
|
+
--tw-text-opacity: 1;
|
3285
|
+
color: rgb(108 115 127 / var(--tw-text-opacity));
|
3286
|
+
}
|
3287
|
+
|
3288
|
+
.text-neutral-600 {
|
3289
|
+
--tw-text-opacity: 1;
|
3290
|
+
color: rgb(77 87 97 / var(--tw-text-opacity));
|
3291
|
+
}
|
3292
|
+
|
3293
|
+
.text-neutral-700 {
|
3294
|
+
--tw-text-opacity: 1;
|
3295
|
+
color: rgb(56 66 80 / var(--tw-text-opacity));
|
3296
|
+
}
|
3297
|
+
|
3298
|
+
.text-neutral-800 {
|
3299
|
+
--tw-text-opacity: 1;
|
3300
|
+
color: rgb(31 42 55 / var(--tw-text-opacity));
|
3301
|
+
}
|
3302
|
+
|
3306
3303
|
.text-neutral-850 {
|
3307
3304
|
--tw-text-opacity: 1;
|
3308
3305
|
color: rgb(24 34 47 / var(--tw-text-opacity));
|
3309
3306
|
}
|
3310
3307
|
|
3308
|
+
.text-neutral-900 {
|
3309
|
+
--tw-text-opacity: 1;
|
3310
|
+
color: rgb(17 25 39 / var(--tw-text-opacity));
|
3311
|
+
}
|
3312
|
+
|
3311
3313
|
.text-neutral-950 {
|
3312
3314
|
--tw-text-opacity: 1;
|
3313
3315
|
color: rgb(13 20 32 / var(--tw-text-opacity));
|
@@ -3368,16 +3370,31 @@ select {
|
|
3368
3370
|
color: rgb(255 188 214 / var(--tw-text-opacity));
|
3369
3371
|
}
|
3370
3372
|
|
3373
|
+
.text-pink-400 {
|
3374
|
+
--tw-text-opacity: 1;
|
3375
|
+
color: rgb(246 119 170 / var(--tw-text-opacity));
|
3376
|
+
}
|
3377
|
+
|
3371
3378
|
.text-pink-500 {
|
3372
3379
|
--tw-text-opacity: 1;
|
3373
3380
|
color: rgb(225 58 124 / var(--tw-text-opacity));
|
3374
3381
|
}
|
3375
3382
|
|
3383
|
+
.text-pink-600 {
|
3384
|
+
--tw-text-opacity: 1;
|
3385
|
+
color: rgb(194 30 95 / var(--tw-text-opacity));
|
3386
|
+
}
|
3387
|
+
|
3376
3388
|
.text-pink-700 {
|
3377
3389
|
--tw-text-opacity: 1;
|
3378
3390
|
color: rgb(165 10 72 / var(--tw-text-opacity));
|
3379
3391
|
}
|
3380
3392
|
|
3393
|
+
.text-pink-800 {
|
3394
|
+
--tw-text-opacity: 1;
|
3395
|
+
color: rgb(113 0 44 / var(--tw-text-opacity));
|
3396
|
+
}
|
3397
|
+
|
3381
3398
|
.text-pink-900 {
|
3382
3399
|
--tw-text-opacity: 1;
|
3383
3400
|
color: rgb(73 0 29 / var(--tw-text-opacity));
|
@@ -3403,6 +3420,11 @@ select {
|
|
3403
3420
|
color: rgb(180 135 255 / var(--tw-text-opacity));
|
3404
3421
|
}
|
3405
3422
|
|
3423
|
+
.text-purple-500 {
|
3424
|
+
--tw-text-opacity: 1;
|
3425
|
+
color: rgb(140 73 250 / var(--tw-text-opacity));
|
3426
|
+
}
|
3427
|
+
|
3406
3428
|
.text-purple-600 {
|
3407
3429
|
--tw-text-opacity: 1;
|
3408
3430
|
color: rgb(113 43 227 / var(--tw-text-opacity));
|
@@ -3413,6 +3435,11 @@ select {
|
|
3413
3435
|
color: rgb(94 19 215 / var(--tw-text-opacity));
|
3414
3436
|
}
|
3415
3437
|
|
3438
|
+
.text-purple-800 {
|
3439
|
+
--tw-text-opacity: 1;
|
3440
|
+
color: rgb(63 1 166 / var(--tw-text-opacity));
|
3441
|
+
}
|
3442
|
+
|
3416
3443
|
.text-purple-900 {
|
3417
3444
|
--tw-text-opacity: 1;
|
3418
3445
|
color: rgb(41 0 107 / var(--tw-text-opacity));
|
@@ -3458,6 +3485,11 @@ select {
|
|
3458
3485
|
color: rgb(152 26 30 / var(--tw-text-opacity));
|
3459
3486
|
}
|
3460
3487
|
|
3488
|
+
.text-storybook-default-heading {
|
3489
|
+
--tw-text-opacity: 1;
|
3490
|
+
color: rgb(17 27 41 / var(--tw-text-opacity));
|
3491
|
+
}
|
3492
|
+
|
3461
3493
|
.text-yellow-100 {
|
3462
3494
|
--tw-text-opacity: 1;
|
3463
3495
|
color: rgb(255 249 199 / var(--tw-text-opacity));
|
@@ -3684,6 +3716,10 @@ select {
|
|
3684
3716
|
transition-duration: 200ms;
|
3685
3717
|
}
|
3686
3718
|
|
3719
|
+
.duration-300 {
|
3720
|
+
transition-duration: 300ms;
|
3721
|
+
}
|
3722
|
+
|
3687
3723
|
.duration-500 {
|
3688
3724
|
transition-duration: 500ms;
|
3689
3725
|
}
|
@@ -4769,8 +4805,8 @@ select {
|
|
4769
4805
|
display: block;
|
4770
4806
|
}
|
4771
4807
|
|
4772
|
-
.group:hover .group-hover\:translate-x-\[0\.
|
4773
|
-
--tw-translate-x: 0.
|
4808
|
+
.group:hover .group-hover\:translate-x-\[0\.15rem\] {
|
4809
|
+
--tw-translate-x: 0.15rem;
|
4774
4810
|
-webkit-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));
|
4775
4811
|
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));
|
4776
4812
|
}
|
@@ -4909,259 +4945,291 @@ select {
|
|
4909
4945
|
}
|
4910
4946
|
|
4911
4947
|
@media (min-width: 600px) {
|
4912
|
-
.
|
4913
|
-
|
4948
|
+
.tb\:visible {
|
4949
|
+
visibility: visible;
|
4950
|
+
}
|
4951
|
+
|
4952
|
+
.tb\:ml-0 {
|
4953
|
+
margin-left: 0px;
|
4954
|
+
}
|
4955
|
+
|
4956
|
+
.tb\:flex {
|
4957
|
+
display: flex;
|
4958
|
+
}
|
4959
|
+
|
4960
|
+
.tb\:inline-flex {
|
4961
|
+
display: inline-flex;
|
4914
4962
|
}
|
4915
4963
|
|
4916
|
-
.
|
4964
|
+
.tb\:hidden {
|
4917
4965
|
display: none;
|
4918
4966
|
}
|
4919
4967
|
|
4920
|
-
.
|
4968
|
+
.tb\:w-fit {
|
4921
4969
|
width: -webkit-fit-content;
|
4922
4970
|
width: -moz-fit-content;
|
4923
4971
|
width: fit-content;
|
4924
4972
|
}
|
4925
4973
|
|
4926
|
-
.
|
4974
|
+
.tb\:min-w-\[18rem\] {
|
4975
|
+
min-width: 18rem;
|
4976
|
+
}
|
4977
|
+
|
4978
|
+
.tb\:flex-col {
|
4979
|
+
flex-direction: column;
|
4980
|
+
}
|
4981
|
+
|
4982
|
+
.tb\:items-center {
|
4983
|
+
align-items: center;
|
4984
|
+
}
|
4985
|
+
|
4986
|
+
.tb\:rounded-2xl {
|
4987
|
+
border-radius: 1rem;
|
4988
|
+
}
|
4989
|
+
|
4990
|
+
.tb\:p-8 {
|
4991
|
+
padding: 2rem;
|
4992
|
+
}
|
4993
|
+
|
4994
|
+
.tb\:text-hds-t-body1 {
|
4927
4995
|
font-size: 1rem;
|
4928
4996
|
line-height: 1.75rem;
|
4929
4997
|
letter-spacing: -0.01em;
|
4930
4998
|
font-weight: 400;
|
4931
4999
|
}
|
4932
5000
|
|
4933
|
-
.
|
5001
|
+
.tb\:text-hds-t-body1-bold {
|
4934
5002
|
font-size: 1rem;
|
4935
5003
|
line-height: 1.75rem;
|
4936
5004
|
letter-spacing: -0.01em;
|
4937
5005
|
font-weight: 700;
|
4938
5006
|
}
|
4939
5007
|
|
4940
|
-
.
|
5008
|
+
.tb\:text-hds-t-body1-medium {
|
4941
5009
|
font-size: 1rem;
|
4942
5010
|
line-height: 1.75rem;
|
4943
5011
|
letter-spacing: -0.01em;
|
4944
5012
|
font-weight: 500;
|
4945
5013
|
}
|
4946
5014
|
|
4947
|
-
.
|
5015
|
+
.tb\:text-hds-t-body1-semi-bold {
|
4948
5016
|
font-size: 1rem;
|
4949
5017
|
line-height: 1.75rem;
|
4950
5018
|
letter-spacing: -0.01em;
|
4951
5019
|
font-weight: 600;
|
4952
5020
|
}
|
4953
5021
|
|
4954
|
-
.
|
5022
|
+
.tb\:text-hds-t-body1c {
|
4955
5023
|
font-size: 1rem;
|
4956
5024
|
line-height: 1.5rem;
|
4957
5025
|
letter-spacing: -0.01em;
|
4958
5026
|
font-weight: 400;
|
4959
5027
|
}
|
4960
5028
|
|
4961
|
-
.
|
5029
|
+
.tb\:text-hds-t-body1c-bold {
|
4962
5030
|
font-size: 1rem;
|
4963
5031
|
line-height: 1.5rem;
|
4964
5032
|
letter-spacing: -0.01em;
|
4965
5033
|
font-weight: 700;
|
4966
5034
|
}
|
4967
5035
|
|
4968
|
-
.
|
5036
|
+
.tb\:text-hds-t-body1c-medium {
|
4969
5037
|
font-size: 1rem;
|
4970
5038
|
line-height: 1.5rem;
|
4971
5039
|
letter-spacing: -0.01em;
|
4972
5040
|
font-weight: 500;
|
4973
5041
|
}
|
4974
5042
|
|
4975
|
-
.
|
5043
|
+
.tb\:text-hds-t-body1c-semi-bold {
|
4976
5044
|
font-size: 1rem;
|
4977
5045
|
line-height: 1.5rem;
|
4978
5046
|
letter-spacing: -0.01em;
|
4979
5047
|
font-weight: 600;
|
4980
5048
|
}
|
4981
5049
|
|
4982
|
-
.
|
5050
|
+
.tb\:text-hds-t-body2 {
|
4983
5051
|
font-size: 0.938rem;
|
4984
5052
|
line-height: 1.625rem;
|
4985
5053
|
letter-spacing: -0.01em;
|
4986
5054
|
font-weight: 400;
|
4987
5055
|
}
|
4988
5056
|
|
4989
|
-
.
|
5057
|
+
.tb\:text-hds-t-body2-bold {
|
4990
5058
|
font-size: 0.938rem;
|
4991
5059
|
line-height: 1.625rem;
|
4992
5060
|
letter-spacing: -0.01em;
|
4993
5061
|
font-weight: 700;
|
4994
5062
|
}
|
4995
5063
|
|
4996
|
-
.
|
5064
|
+
.tb\:text-hds-t-body2-medium {
|
4997
5065
|
font-size: 0.938rem;
|
4998
5066
|
line-height: 1.625rem;
|
4999
5067
|
letter-spacing: -0.01em;
|
5000
5068
|
font-weight: 500;
|
5001
5069
|
}
|
5002
5070
|
|
5003
|
-
.
|
5071
|
+
.tb\:text-hds-t-body2-semi-bold {
|
5004
5072
|
font-size: 0.938rem;
|
5005
5073
|
line-height: 1.625rem;
|
5006
5074
|
letter-spacing: -0.01em;
|
5007
5075
|
font-weight: 600;
|
5008
5076
|
}
|
5009
5077
|
|
5010
|
-
.
|
5078
|
+
.tb\:text-hds-t-body2c {
|
5011
5079
|
font-size: 0.938rem;
|
5012
5080
|
line-height: 1.375rem;
|
5013
5081
|
letter-spacing: -0.01em;
|
5014
5082
|
font-weight: 400;
|
5015
5083
|
}
|
5016
5084
|
|
5017
|
-
.
|
5085
|
+
.tb\:text-hds-t-body2c-bold {
|
5018
5086
|
font-size: 0.938rem;
|
5019
5087
|
line-height: 1.375rem;
|
5020
5088
|
letter-spacing: -0.01em;
|
5021
5089
|
font-weight: 700;
|
5022
5090
|
}
|
5023
5091
|
|
5024
|
-
.
|
5092
|
+
.tb\:text-hds-t-body2c-medium {
|
5025
5093
|
font-size: 0.938rem;
|
5026
5094
|
line-height: 1.375rem;
|
5027
5095
|
letter-spacing: -0.01em;
|
5028
5096
|
font-weight: 500;
|
5029
5097
|
}
|
5030
5098
|
|
5031
|
-
.
|
5099
|
+
.tb\:text-hds-t-body2c-semi-bold {
|
5032
5100
|
font-size: 0.938rem;
|
5033
5101
|
line-height: 1.375rem;
|
5034
5102
|
letter-spacing: -0.01em;
|
5035
5103
|
font-weight: 600;
|
5036
5104
|
}
|
5037
5105
|
|
5038
|
-
.
|
5106
|
+
.tb\:text-hds-t-body3 {
|
5039
5107
|
font-size: 0.875rem;
|
5040
5108
|
line-height: 1.5rem;
|
5041
5109
|
letter-spacing: ;
|
5042
5110
|
font-weight: 400;
|
5043
5111
|
}
|
5044
5112
|
|
5045
|
-
.
|
5113
|
+
.tb\:text-hds-t-body3-bold {
|
5046
5114
|
font-size: 0.875rem;
|
5047
5115
|
line-height: 1.5rem;
|
5048
5116
|
letter-spacing: ;
|
5049
5117
|
font-weight: 700;
|
5050
5118
|
}
|
5051
5119
|
|
5052
|
-
.
|
5120
|
+
.tb\:text-hds-t-body3-medium {
|
5053
5121
|
font-size: 0.875rem;
|
5054
5122
|
line-height: 1.5rem;
|
5055
5123
|
letter-spacing: ;
|
5056
5124
|
font-weight: 500;
|
5057
5125
|
}
|
5058
5126
|
|
5059
|
-
.
|
5127
|
+
.tb\:text-hds-t-body3-semi-bold {
|
5060
5128
|
font-size: 0.875rem;
|
5061
5129
|
line-height: 1.5rem;
|
5062
5130
|
letter-spacing: ;
|
5063
5131
|
font-weight: 600;
|
5064
5132
|
}
|
5065
5133
|
|
5066
|
-
.
|
5134
|
+
.tb\:text-hds-t-body3c {
|
5067
5135
|
font-size: 0.875rem;
|
5068
5136
|
line-height: 1.25rem;
|
5069
5137
|
letter-spacing: ;
|
5070
5138
|
font-weight: 400;
|
5071
5139
|
}
|
5072
5140
|
|
5073
|
-
.
|
5141
|
+
.tb\:text-hds-t-body3c-bold {
|
5074
5142
|
font-size: 0.875rem;
|
5075
5143
|
line-height: 1.25rem;
|
5076
5144
|
letter-spacing: ;
|
5077
5145
|
font-weight: 700;
|
5078
5146
|
}
|
5079
5147
|
|
5080
|
-
.
|
5148
|
+
.tb\:text-hds-t-body3c-medium {
|
5081
5149
|
font-size: 0.875rem;
|
5082
5150
|
line-height: 1.25rem;
|
5083
5151
|
letter-spacing: ;
|
5084
5152
|
font-weight: 500;
|
5085
5153
|
}
|
5086
5154
|
|
5087
|
-
.
|
5155
|
+
.tb\:text-hds-t-body3c-semi-bold {
|
5088
5156
|
font-size: 0.875rem;
|
5089
5157
|
line-height: 1.25rem;
|
5090
5158
|
letter-spacing: ;
|
5091
5159
|
font-weight: 600;
|
5092
5160
|
}
|
5093
5161
|
|
5094
|
-
.
|
5162
|
+
.tb\:text-hds-t-code1 {
|
5095
5163
|
font-size: 1rem;
|
5096
5164
|
line-height: 1.75rem;
|
5097
5165
|
letter-spacing: -0.01em;
|
5098
5166
|
font-weight: 400;
|
5099
5167
|
}
|
5100
5168
|
|
5101
|
-
.
|
5169
|
+
.tb\:text-hds-t-code2 {
|
5102
5170
|
font-size: 0.938rem;
|
5103
5171
|
line-height: 1.625rem;
|
5104
5172
|
letter-spacing: -0.01em;
|
5105
5173
|
font-weight: 400;
|
5106
5174
|
}
|
5107
5175
|
|
5108
|
-
.
|
5176
|
+
.tb\:text-hds-t-h1 {
|
5109
5177
|
font-size: 3rem;
|
5110
5178
|
line-height: 1.25;
|
5111
5179
|
letter-spacing: -0.02em;
|
5112
5180
|
font-weight: 700;
|
5113
5181
|
}
|
5114
5182
|
|
5115
|
-
.
|
5183
|
+
.tb\:text-hds-t-h2 {
|
5116
5184
|
font-size: 2.25rem;
|
5117
5185
|
line-height: 3rem;
|
5118
5186
|
letter-spacing: -0.02em;
|
5119
5187
|
font-weight: 700;
|
5120
5188
|
}
|
5121
5189
|
|
5122
|
-
.
|
5190
|
+
.tb\:text-hds-t-h3 {
|
5123
5191
|
font-size: 1.875rem;
|
5124
5192
|
line-height: 2.5rem;
|
5125
5193
|
letter-spacing: -0.02em;
|
5126
5194
|
font-weight: 700;
|
5127
5195
|
}
|
5128
5196
|
|
5129
|
-
.
|
5197
|
+
.tb\:text-hds-t-h4 {
|
5130
5198
|
font-size: 1.25rem;
|
5131
5199
|
line-height: 2rem;
|
5132
5200
|
letter-spacing: -0.02em;
|
5133
5201
|
font-weight: 600;
|
5134
5202
|
}
|
5135
5203
|
|
5136
|
-
.
|
5204
|
+
.tb\:text-hds-t-h5 {
|
5137
5205
|
font-size: 1.125rem;
|
5138
5206
|
line-height: 1.75rem;
|
5139
5207
|
letter-spacing: -0.02em;
|
5140
5208
|
font-weight: 600;
|
5141
5209
|
}
|
5142
5210
|
|
5143
|
-
.
|
5211
|
+
.tb\:text-hds-t-h6 {
|
5144
5212
|
font-size: 0.75rem;
|
5145
5213
|
line-height: 1.25rem;
|
5146
5214
|
letter-spacing: 0.08em;
|
5147
5215
|
font-weight: 700;
|
5148
5216
|
}
|
5149
5217
|
|
5150
|
-
.
|
5218
|
+
.tb\:text-hds-t-quote {
|
5151
5219
|
font-size: 1.125rem;
|
5152
5220
|
line-height: 1.75rem;
|
5153
5221
|
letter-spacing: -0.01em;
|
5154
5222
|
font-weight: 400;
|
5155
5223
|
}
|
5156
5224
|
|
5157
|
-
.
|
5225
|
+
.tb\:text-hds-t-sub1 {
|
5158
5226
|
font-size: 1.25rem;
|
5159
5227
|
line-height: 2rem;
|
5160
5228
|
letter-spacing: -0.01em;
|
5161
5229
|
font-weight: 400;
|
5162
5230
|
}
|
5163
5231
|
|
5164
|
-
.
|
5232
|
+
.tb\:text-hds-t-sub2 {
|
5165
5233
|
font-size: 1.125rem;
|
5166
5234
|
line-height: 1.75rem;
|
5167
5235
|
letter-spacing: -0.01em;
|
@@ -5170,10 +5238,6 @@ select {
|
|
5170
5238
|
}
|
5171
5239
|
|
5172
5240
|
@media (min-width: 640px) {
|
5173
|
-
.sm\:visible {
|
5174
|
-
visibility: visible;
|
5175
|
-
}
|
5176
|
-
|
5177
5241
|
.sm\:-mx-0 {
|
5178
5242
|
margin-left: -0px;
|
5179
5243
|
margin-right: -0px;
|
@@ -5219,10 +5283,6 @@ select {
|
|
5219
5283
|
width: 3rem;
|
5220
5284
|
}
|
5221
5285
|
|
5222
|
-
.sm\:w-52 {
|
5223
|
-
width: 13rem;
|
5224
|
-
}
|
5225
|
-
|
5226
5286
|
.sm\:max-w-sm {
|
5227
5287
|
max-width: 24rem;
|
5228
5288
|
}
|
@@ -5388,291 +5448,259 @@ select {
|
|
5388
5448
|
}
|
5389
5449
|
|
5390
5450
|
@media (min-width: 1240px) {
|
5391
|
-
.
|
5451
|
+
.db\:-left-5 {
|
5392
5452
|
left: -1.25rem;
|
5393
5453
|
}
|
5394
5454
|
|
5395
|
-
.
|
5455
|
+
.db\:-right-5 {
|
5396
5456
|
right: -1.25rem;
|
5397
5457
|
}
|
5398
5458
|
|
5399
|
-
.
|
5400
|
-
margin-left: 0px;
|
5401
|
-
}
|
5402
|
-
|
5403
|
-
.desk\:flex {
|
5404
|
-
display: flex;
|
5405
|
-
}
|
5406
|
-
|
5407
|
-
.desk\:inline-flex {
|
5408
|
-
display: inline-flex;
|
5409
|
-
}
|
5410
|
-
|
5411
|
-
.desk\:w-fit {
|
5459
|
+
.db\:w-fit {
|
5412
5460
|
width: -webkit-fit-content;
|
5413
5461
|
width: -moz-fit-content;
|
5414
5462
|
width: fit-content;
|
5415
5463
|
}
|
5416
5464
|
|
5417
|
-
.
|
5418
|
-
min-width: 18rem;
|
5419
|
-
}
|
5420
|
-
|
5421
|
-
.desk\:flex-col {
|
5422
|
-
flex-direction: column;
|
5423
|
-
}
|
5424
|
-
|
5425
|
-
.desk\:items-center {
|
5426
|
-
align-items: center;
|
5427
|
-
}
|
5428
|
-
|
5429
|
-
.desk\:rounded-2xl {
|
5430
|
-
border-radius: 1rem;
|
5431
|
-
}
|
5432
|
-
|
5433
|
-
.desk\:p-8 {
|
5434
|
-
padding: 2rem;
|
5435
|
-
}
|
5436
|
-
|
5437
|
-
.desk\:text-hds-d-body1 {
|
5465
|
+
.db\:text-hds-d-body1 {
|
5438
5466
|
font-size: 1rem;
|
5439
5467
|
line-height: 1.75rem;
|
5440
5468
|
letter-spacing: -0.01em;
|
5441
5469
|
font-weight: 400;
|
5442
5470
|
}
|
5443
5471
|
|
5444
|
-
.
|
5472
|
+
.db\:text-hds-d-body1-bold {
|
5445
5473
|
font-size: 1rem;
|
5446
5474
|
line-height: 1.75rem;
|
5447
5475
|
letter-spacing: -0.01em;
|
5448
5476
|
font-weight: 700;
|
5449
5477
|
}
|
5450
5478
|
|
5451
|
-
.
|
5479
|
+
.db\:text-hds-d-body1-medium {
|
5452
5480
|
font-size: 1rem;
|
5453
5481
|
line-height: 1.75rem;
|
5454
5482
|
letter-spacing: -0.01em;
|
5455
5483
|
font-weight: 500;
|
5456
5484
|
}
|
5457
5485
|
|
5458
|
-
.
|
5486
|
+
.db\:text-hds-d-body1-semi-bold {
|
5459
5487
|
font-size: 1rem;
|
5460
5488
|
line-height: 1.75rem;
|
5461
5489
|
letter-spacing: -0.01em;
|
5462
5490
|
font-weight: 600;
|
5463
5491
|
}
|
5464
5492
|
|
5465
|
-
.
|
5493
|
+
.db\:text-hds-d-body1c {
|
5466
5494
|
font-size: 1rem;
|
5467
5495
|
line-height: 1.5rem;
|
5468
5496
|
letter-spacing: -0.01em;
|
5469
5497
|
font-weight: 400;
|
5470
5498
|
}
|
5471
5499
|
|
5472
|
-
.
|
5500
|
+
.db\:text-hds-d-body1c-bold {
|
5473
5501
|
font-size: 1rem;
|
5474
5502
|
line-height: 1.5rem;
|
5475
5503
|
letter-spacing: -0.01em;
|
5476
5504
|
font-weight: 700;
|
5477
5505
|
}
|
5478
5506
|
|
5479
|
-
.
|
5507
|
+
.db\:text-hds-d-body1c-medium {
|
5480
5508
|
font-size: 1rem;
|
5481
5509
|
line-height: 1.5rem;
|
5482
5510
|
letter-spacing: -0.01em;
|
5483
5511
|
font-weight: 500;
|
5484
5512
|
}
|
5485
5513
|
|
5486
|
-
.
|
5514
|
+
.db\:text-hds-d-body1c-semi-bold {
|
5487
5515
|
font-size: 1rem;
|
5488
5516
|
line-height: 1.5rem;
|
5489
5517
|
letter-spacing: -0.01em;
|
5490
5518
|
font-weight: 600;
|
5491
5519
|
}
|
5492
5520
|
|
5493
|
-
.
|
5521
|
+
.db\:text-hds-d-body2 {
|
5494
5522
|
font-size: 0.938rem;
|
5495
5523
|
line-height: 1.625rem;
|
5496
5524
|
letter-spacing: -0.01em;
|
5497
5525
|
font-weight: 400;
|
5498
5526
|
}
|
5499
5527
|
|
5500
|
-
.
|
5528
|
+
.db\:text-hds-d-body2-bold {
|
5501
5529
|
font-size: 0.938rem;
|
5502
5530
|
line-height: 1.625rem;
|
5503
5531
|
letter-spacing: -0.01em;
|
5504
5532
|
font-weight: 700;
|
5505
5533
|
}
|
5506
5534
|
|
5507
|
-
.
|
5535
|
+
.db\:text-hds-d-body2-medium {
|
5508
5536
|
font-size: 0.938rem;
|
5509
5537
|
line-height: 1.625rem;
|
5510
5538
|
letter-spacing: -0.01em;
|
5511
5539
|
font-weight: 500;
|
5512
5540
|
}
|
5513
5541
|
|
5514
|
-
.
|
5542
|
+
.db\:text-hds-d-body2-semi-bold {
|
5515
5543
|
font-size: 0.938rem;
|
5516
5544
|
line-height: 1.625rem;
|
5517
5545
|
letter-spacing: -0.01em;
|
5518
5546
|
font-weight: 600;
|
5519
5547
|
}
|
5520
5548
|
|
5521
|
-
.
|
5549
|
+
.db\:text-hds-d-body2c {
|
5522
5550
|
font-size: 0.938rem;
|
5523
5551
|
line-height: 1.375rem;
|
5524
5552
|
letter-spacing: -0.01em;
|
5525
5553
|
font-weight: 400;
|
5526
5554
|
}
|
5527
5555
|
|
5528
|
-
.
|
5556
|
+
.db\:text-hds-d-body2c-bold {
|
5529
5557
|
font-size: 0.938rem;
|
5530
5558
|
line-height: 1.375rem;
|
5531
5559
|
letter-spacing: -0.01em;
|
5532
5560
|
font-weight: 700;
|
5533
5561
|
}
|
5534
5562
|
|
5535
|
-
.
|
5563
|
+
.db\:text-hds-d-body2c-medium {
|
5536
5564
|
font-size: 0.938rem;
|
5537
5565
|
line-height: 1.375rem;
|
5538
5566
|
letter-spacing: -0.01em;
|
5539
5567
|
font-weight: 500;
|
5540
5568
|
}
|
5541
5569
|
|
5542
|
-
.
|
5570
|
+
.db\:text-hds-d-body2c-semi-bold {
|
5543
5571
|
font-size: 0.938rem;
|
5544
5572
|
line-height: 1.375rem;
|
5545
5573
|
letter-spacing: -0.01em;
|
5546
5574
|
font-weight: 600;
|
5547
5575
|
}
|
5548
5576
|
|
5549
|
-
.
|
5577
|
+
.db\:text-hds-d-body3 {
|
5550
5578
|
font-size: 0.875rem;
|
5551
5579
|
line-height: 1.5rem;
|
5552
5580
|
letter-spacing: ;
|
5553
5581
|
font-weight: 400;
|
5554
5582
|
}
|
5555
5583
|
|
5556
|
-
.
|
5584
|
+
.db\:text-hds-d-body3-bold {
|
5557
5585
|
font-size: 0.875rem;
|
5558
5586
|
line-height: 1.5rem;
|
5559
5587
|
letter-spacing: ;
|
5560
5588
|
font-weight: 700;
|
5561
5589
|
}
|
5562
5590
|
|
5563
|
-
.
|
5591
|
+
.db\:text-hds-d-body3-medium {
|
5564
5592
|
font-size: 0.875rem;
|
5565
5593
|
line-height: 1.5rem;
|
5566
5594
|
letter-spacing: ;
|
5567
5595
|
font-weight: 500;
|
5568
5596
|
}
|
5569
5597
|
|
5570
|
-
.
|
5598
|
+
.db\:text-hds-d-body3-semi-bold {
|
5571
5599
|
font-size: 0.875rem;
|
5572
5600
|
line-height: 1.5rem;
|
5573
5601
|
letter-spacing: ;
|
5574
5602
|
font-weight: 600;
|
5575
5603
|
}
|
5576
5604
|
|
5577
|
-
.
|
5605
|
+
.db\:text-hds-d-body3c {
|
5578
5606
|
font-size: 0.875rem;
|
5579
5607
|
line-height: 1.25rem;
|
5580
5608
|
letter-spacing: ;
|
5581
5609
|
font-weight: 400;
|
5582
5610
|
}
|
5583
5611
|
|
5584
|
-
.
|
5612
|
+
.db\:text-hds-d-body3c-bold {
|
5585
5613
|
font-size: 0.875rem;
|
5586
5614
|
line-height: 1.25rem;
|
5587
5615
|
letter-spacing: ;
|
5588
5616
|
font-weight: 700;
|
5589
5617
|
}
|
5590
5618
|
|
5591
|
-
.
|
5619
|
+
.db\:text-hds-d-body3c-medium {
|
5592
5620
|
font-size: 0.875rem;
|
5593
5621
|
line-height: 1.25rem;
|
5594
5622
|
letter-spacing: ;
|
5595
5623
|
font-weight: 500;
|
5596
5624
|
}
|
5597
5625
|
|
5598
|
-
.
|
5626
|
+
.db\:text-hds-d-body3c-semi-bold {
|
5599
5627
|
font-size: 0.875rem;
|
5600
5628
|
line-height: 1.25rem;
|
5601
5629
|
letter-spacing: ;
|
5602
5630
|
font-weight: 600;
|
5603
5631
|
}
|
5604
5632
|
|
5605
|
-
.
|
5633
|
+
.db\:text-hds-d-code1 {
|
5606
5634
|
font-size: 1rem;
|
5607
5635
|
line-height: 1.75rem;
|
5608
5636
|
letter-spacing: -0.01em;
|
5609
5637
|
font-weight: 400;
|
5610
5638
|
}
|
5611
5639
|
|
5612
|
-
.
|
5640
|
+
.db\:text-hds-d-code2 {
|
5613
5641
|
font-size: 0.938rem;
|
5614
5642
|
line-height: 1.625rem;
|
5615
5643
|
letter-spacing: -0.01em;
|
5616
5644
|
font-weight: 400;
|
5617
5645
|
}
|
5618
5646
|
|
5619
|
-
.
|
5647
|
+
.db\:text-hds-d-h1 {
|
5620
5648
|
font-size: 4rem;
|
5621
5649
|
line-height: 1.125;
|
5622
5650
|
letter-spacing: -0.02em;
|
5623
5651
|
font-weight: 700;
|
5624
5652
|
}
|
5625
5653
|
|
5626
|
-
.
|
5654
|
+
.db\:text-hds-d-h2 {
|
5627
5655
|
font-size: 3rem;
|
5628
5656
|
line-height: 1.25;
|
5629
5657
|
letter-spacing: -0.02em;
|
5630
5658
|
font-weight: 700;
|
5631
5659
|
}
|
5632
5660
|
|
5633
|
-
.
|
5661
|
+
.db\:text-hds-d-h3 {
|
5634
5662
|
font-size: 2.25rem;
|
5635
5663
|
line-height: 3rem;
|
5636
5664
|
letter-spacing: -0.02em;
|
5637
5665
|
font-weight: 700;
|
5638
5666
|
}
|
5639
5667
|
|
5640
|
-
.
|
5668
|
+
.db\:text-hds-d-h4 {
|
5641
5669
|
font-size: 1.5rem;
|
5642
5670
|
line-height: 2.25rem;
|
5643
5671
|
letter-spacing: -0.02em;
|
5644
5672
|
font-weight: 600;
|
5645
5673
|
}
|
5646
5674
|
|
5647
|
-
.
|
5675
|
+
.db\:text-hds-d-h5 {
|
5648
5676
|
font-size: 1.25rem;
|
5649
5677
|
line-height: 2rem;
|
5650
5678
|
letter-spacing: -0.02em;
|
5651
5679
|
font-weight: 600;
|
5652
5680
|
}
|
5653
5681
|
|
5654
|
-
.
|
5682
|
+
.db\:text-hds-d-h6 {
|
5655
5683
|
font-size: 0.875;
|
5656
5684
|
line-height: 1.25;
|
5657
5685
|
letter-spacing: 0.08em;
|
5658
5686
|
font-weight: 700;
|
5659
5687
|
}
|
5660
5688
|
|
5661
|
-
.
|
5689
|
+
.db\:text-hds-d-quote {
|
5662
5690
|
font-size: 1.5rem;
|
5663
5691
|
line-height: 2.25rem;
|
5664
5692
|
letter-spacing: -0.01em;
|
5665
5693
|
font-weight: 400;
|
5666
5694
|
}
|
5667
5695
|
|
5668
|
-
.
|
5696
|
+
.db\:text-hds-d-sub1 {
|
5669
5697
|
font-size: 1.5rem;
|
5670
5698
|
line-height: 2.25rem;
|
5671
5699
|
letter-spacing: -0.02em;
|
5672
5700
|
font-weight: 400;
|
5673
5701
|
}
|
5674
5702
|
|
5675
|
-
.
|
5703
|
+
.db\:text-hds-d-sub2 {
|
5676
5704
|
font-size: 1.25rem;
|
5677
5705
|
line-height: 2rem;
|
5678
5706
|
letter-spacing: -0.01em;
|