hds-web 0.1.4 → 0.1.5
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 +9 -9
- package/src/HDS/components/Carousels/carousel.js +1 -1
- package/src/HDS/components/Carousels/carouselCard.js +12 -11
- 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 +407 -395
- 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;
|
@@ -1288,6 +1300,10 @@ select {
|
|
1288
1300
|
height: 1.25rem;
|
1289
1301
|
}
|
1290
1302
|
|
1303
|
+
.h-52 {
|
1304
|
+
height: 13rem;
|
1305
|
+
}
|
1306
|
+
|
1291
1307
|
.h-6 {
|
1292
1308
|
height: 1.5rem;
|
1293
1309
|
}
|
@@ -2013,121 +2029,6 @@ select {
|
|
2013
2029
|
background-color: rgb(51 51 51 / var(--tw-bg-opacity));
|
2014
2030
|
}
|
2015
2031
|
|
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
2032
|
.bg-amber-100 {
|
2132
2033
|
--tw-bg-opacity: 1;
|
2133
2034
|
background-color: rgb(255 243 212 / var(--tw-bg-opacity));
|
@@ -2153,6 +2054,11 @@ select {
|
|
2153
2054
|
background-color: rgb(224 121 0 / var(--tw-bg-opacity));
|
2154
2055
|
}
|
2155
2056
|
|
2057
|
+
.bg-amber-600 {
|
2058
|
+
--tw-bg-opacity: 1;
|
2059
|
+
background-color: rgb(184 88 0 / var(--tw-bg-opacity));
|
2060
|
+
}
|
2061
|
+
|
2156
2062
|
.bg-amber-700 {
|
2157
2063
|
--tw-bg-opacity: 1;
|
2158
2064
|
background-color: rgb(153 55 0 / var(--tw-bg-opacity));
|
@@ -2178,16 +2084,46 @@ select {
|
|
2178
2084
|
background-color: rgb(0 6 21 / var(--tw-bg-opacity));
|
2179
2085
|
}
|
2180
2086
|
|
2087
|
+
.bg-blue-100 {
|
2088
|
+
--tw-bg-opacity: 1;
|
2089
|
+
background-color: rgb(240 244 255 / var(--tw-bg-opacity));
|
2090
|
+
}
|
2091
|
+
|
2092
|
+
.bg-blue-200 {
|
2093
|
+
--tw-bg-opacity: 1;
|
2094
|
+
background-color: rgb(223 232 255 / var(--tw-bg-opacity));
|
2095
|
+
}
|
2096
|
+
|
2181
2097
|
.bg-blue-300 {
|
2182
2098
|
--tw-bg-opacity: 1;
|
2183
2099
|
background-color: rgb(198 214 255 / var(--tw-bg-opacity));
|
2184
2100
|
}
|
2185
2101
|
|
2102
|
+
.bg-blue-400 {
|
2103
|
+
--tw-bg-opacity: 1;
|
2104
|
+
background-color: rgb(128 163 255 / var(--tw-bg-opacity));
|
2105
|
+
}
|
2106
|
+
|
2107
|
+
.bg-blue-500 {
|
2108
|
+
--tw-bg-opacity: 1;
|
2109
|
+
background-color: rgb(57 112 253 / var(--tw-bg-opacity));
|
2110
|
+
}
|
2111
|
+
|
2112
|
+
.bg-blue-600 {
|
2113
|
+
--tw-bg-opacity: 1;
|
2114
|
+
background-color: rgb(30 86 227 / var(--tw-bg-opacity));
|
2115
|
+
}
|
2116
|
+
|
2186
2117
|
.bg-blue-700 {
|
2187
2118
|
--tw-bg-opacity: 1;
|
2188
2119
|
background-color: rgb(13 65 198 / var(--tw-bg-opacity));
|
2189
2120
|
}
|
2190
2121
|
|
2122
|
+
.bg-blue-800 {
|
2123
|
+
--tw-bg-opacity: 1;
|
2124
|
+
background-color: rgb(0 40 142 / var(--tw-bg-opacity));
|
2125
|
+
}
|
2126
|
+
|
2191
2127
|
.bg-blue-900 {
|
2192
2128
|
--tw-bg-opacity: 1;
|
2193
2129
|
background-color: rgb(0 28 99 / var(--tw-bg-opacity));
|
@@ -2218,6 +2154,11 @@ select {
|
|
2218
2154
|
background-color: rgb(14 150 178 / var(--tw-bg-opacity));
|
2219
2155
|
}
|
2220
2156
|
|
2157
|
+
.bg-cyan-600 {
|
2158
|
+
--tw-bg-opacity: 1;
|
2159
|
+
background-color: rgb(4 117 141 / var(--tw-bg-opacity));
|
2160
|
+
}
|
2161
|
+
|
2221
2162
|
.bg-cyan-700 {
|
2222
2163
|
--tw-bg-opacity: 1;
|
2223
2164
|
background-color: rgb(0 90 108 / var(--tw-bg-opacity));
|
@@ -2233,6 +2174,11 @@ select {
|
|
2233
2174
|
background-color: rgb(0 35 43 / var(--tw-bg-opacity));
|
2234
2175
|
}
|
2235
2176
|
|
2177
|
+
.bg-green-100 {
|
2178
|
+
--tw-bg-opacity: 1;
|
2179
|
+
background-color: rgb(218 255 244 / var(--tw-bg-opacity));
|
2180
|
+
}
|
2181
|
+
|
2236
2182
|
.bg-green-200 {
|
2237
2183
|
--tw-bg-opacity: 1;
|
2238
2184
|
background-color: rgb(184 251 231 / var(--tw-bg-opacity));
|
@@ -2243,11 +2189,21 @@ select {
|
|
2243
2189
|
background-color: rgb(145 245 215 / var(--tw-bg-opacity));
|
2244
2190
|
}
|
2245
2191
|
|
2192
|
+
.bg-green-400 {
|
2193
|
+
--tw-bg-opacity: 1;
|
2194
|
+
background-color: rgb(57 218 170 / var(--tw-bg-opacity));
|
2195
|
+
}
|
2196
|
+
|
2246
2197
|
.bg-green-500 {
|
2247
2198
|
--tw-bg-opacity: 1;
|
2248
2199
|
background-color: rgb(14 165 120 / var(--tw-bg-opacity));
|
2249
2200
|
}
|
2250
2201
|
|
2202
|
+
.bg-green-600 {
|
2203
|
+
--tw-bg-opacity: 1;
|
2204
|
+
background-color: rgb(2 125 89 / var(--tw-bg-opacity));
|
2205
|
+
}
|
2206
|
+
|
2251
2207
|
.bg-green-700 {
|
2252
2208
|
--tw-bg-opacity: 1;
|
2253
2209
|
background-color: rgb(0 96 67 / var(--tw-bg-opacity));
|
@@ -2263,6 +2219,16 @@ select {
|
|
2263
2219
|
background-color: rgb(0 40 29 / var(--tw-bg-opacity));
|
2264
2220
|
}
|
2265
2221
|
|
2222
|
+
.bg-neutral-0 {
|
2223
|
+
--tw-bg-opacity: 1;
|
2224
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
2225
|
+
}
|
2226
|
+
|
2227
|
+
.bg-neutral-100 {
|
2228
|
+
--tw-bg-opacity: 1;
|
2229
|
+
background-color: rgb(243 244 246 / var(--tw-bg-opacity));
|
2230
|
+
}
|
2231
|
+
|
2266
2232
|
.bg-neutral-1000 {
|
2267
2233
|
--tw-bg-opacity: 1;
|
2268
2234
|
background-color: rgb(0 6 21 / var(--tw-bg-opacity));
|
@@ -2273,6 +2239,11 @@ select {
|
|
2273
2239
|
background-color: rgb(236 237 240 / var(--tw-bg-opacity));
|
2274
2240
|
}
|
2275
2241
|
|
2242
|
+
.bg-neutral-200 {
|
2243
|
+
--tw-bg-opacity: 1;
|
2244
|
+
background-color: rgb(229 231 235 / var(--tw-bg-opacity));
|
2245
|
+
}
|
2246
|
+
|
2276
2247
|
.bg-neutral-300 {
|
2277
2248
|
--tw-bg-opacity: 1;
|
2278
2249
|
background-color: rgb(210 214 219 / var(--tw-bg-opacity));
|
@@ -2283,6 +2254,21 @@ select {
|
|
2283
2254
|
background-color: rgb(157 164 174 / var(--tw-bg-opacity));
|
2284
2255
|
}
|
2285
2256
|
|
2257
|
+
.bg-neutral-50 {
|
2258
|
+
--tw-bg-opacity: 1;
|
2259
|
+
background-color: rgb(249 250 251 / var(--tw-bg-opacity));
|
2260
|
+
}
|
2261
|
+
|
2262
|
+
.bg-neutral-500 {
|
2263
|
+
--tw-bg-opacity: 1;
|
2264
|
+
background-color: rgb(108 115 127 / var(--tw-bg-opacity));
|
2265
|
+
}
|
2266
|
+
|
2267
|
+
.bg-neutral-600 {
|
2268
|
+
--tw-bg-opacity: 1;
|
2269
|
+
background-color: rgb(77 87 97 / var(--tw-bg-opacity));
|
2270
|
+
}
|
2271
|
+
|
2286
2272
|
.bg-neutral-700 {
|
2287
2273
|
--tw-bg-opacity: 1;
|
2288
2274
|
background-color: rgb(56 66 80 / var(--tw-bg-opacity));
|
@@ -2298,6 +2284,11 @@ select {
|
|
2298
2284
|
background-color: rgb(24 34 47 / var(--tw-bg-opacity));
|
2299
2285
|
}
|
2300
2286
|
|
2287
|
+
.bg-neutral-900 {
|
2288
|
+
--tw-bg-opacity: 1;
|
2289
|
+
background-color: rgb(17 25 39 / var(--tw-bg-opacity));
|
2290
|
+
}
|
2291
|
+
|
2301
2292
|
.bg-neutral-950 {
|
2302
2293
|
--tw-bg-opacity: 1;
|
2303
2294
|
background-color: rgb(13 20 32 / var(--tw-bg-opacity));
|
@@ -2358,11 +2349,21 @@ select {
|
|
2358
2349
|
background-color: rgb(255 188 214 / var(--tw-bg-opacity));
|
2359
2350
|
}
|
2360
2351
|
|
2352
|
+
.bg-pink-400 {
|
2353
|
+
--tw-bg-opacity: 1;
|
2354
|
+
background-color: rgb(246 119 170 / var(--tw-bg-opacity));
|
2355
|
+
}
|
2356
|
+
|
2361
2357
|
.bg-pink-500 {
|
2362
2358
|
--tw-bg-opacity: 1;
|
2363
2359
|
background-color: rgb(225 58 124 / var(--tw-bg-opacity));
|
2364
2360
|
}
|
2365
2361
|
|
2362
|
+
.bg-pink-600 {
|
2363
|
+
--tw-bg-opacity: 1;
|
2364
|
+
background-color: rgb(194 30 95 / var(--tw-bg-opacity));
|
2365
|
+
}
|
2366
|
+
|
2366
2367
|
.bg-pink-700 {
|
2367
2368
|
--tw-bg-opacity: 1;
|
2368
2369
|
background-color: rgb(165 10 72 / var(--tw-bg-opacity));
|
@@ -2398,6 +2399,16 @@ select {
|
|
2398
2399
|
background-color: rgb(180 135 255 / var(--tw-bg-opacity));
|
2399
2400
|
}
|
2400
2401
|
|
2402
|
+
.bg-purple-500 {
|
2403
|
+
--tw-bg-opacity: 1;
|
2404
|
+
background-color: rgb(140 73 250 / var(--tw-bg-opacity));
|
2405
|
+
}
|
2406
|
+
|
2407
|
+
.bg-purple-600 {
|
2408
|
+
--tw-bg-opacity: 1;
|
2409
|
+
background-color: rgb(113 43 227 / var(--tw-bg-opacity));
|
2410
|
+
}
|
2411
|
+
|
2401
2412
|
.bg-purple-700 {
|
2402
2413
|
--tw-bg-opacity: 1;
|
2403
2414
|
background-color: rgb(94 19 215 / var(--tw-bg-opacity));
|
@@ -2453,6 +2464,11 @@ select {
|
|
2453
2464
|
background-color: rgb(152 26 30 / var(--tw-bg-opacity));
|
2454
2465
|
}
|
2455
2466
|
|
2467
|
+
.bg-storybook-default-heading {
|
2468
|
+
--tw-bg-opacity: 1;
|
2469
|
+
background-color: rgb(17 27 41 / var(--tw-bg-opacity));
|
2470
|
+
}
|
2471
|
+
|
2456
2472
|
.bg-yellow-100 {
|
2457
2473
|
--tw-bg-opacity: 1;
|
2458
2474
|
background-color: rgb(255 249 199 / var(--tw-bg-opacity));
|
@@ -2493,6 +2509,10 @@ select {
|
|
2493
2509
|
background-color: rgb(133 77 24 / var(--tw-bg-opacity));
|
2494
2510
|
}
|
2495
2511
|
|
2512
|
+
.stroke-2 {
|
2513
|
+
stroke-width: 2;
|
2514
|
+
}
|
2515
|
+
|
2496
2516
|
.object-contain {
|
2497
2517
|
object-fit: contain;
|
2498
2518
|
}
|
@@ -2945,192 +2965,77 @@ select {
|
|
2945
2965
|
font-weight: 700;
|
2946
2966
|
}
|
2947
2967
|
|
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));
|
2968
|
+
.text-hds-m-h4 {
|
2969
|
+
font-size: 1.25rem;
|
2970
|
+
line-height: 2rem;
|
2971
|
+
letter-spacing: -0.02em;
|
2972
|
+
font-weight: 600;
|
3074
2973
|
}
|
3075
2974
|
|
3076
|
-
.text-
|
3077
|
-
|
3078
|
-
|
2975
|
+
.text-hds-m-h5 {
|
2976
|
+
font-size: 1.125rem;
|
2977
|
+
line-height: 1.75rem;
|
2978
|
+
letter-spacing: -0.02em;
|
2979
|
+
font-weight: 600;
|
3079
2980
|
}
|
3080
2981
|
|
3081
|
-
.text-
|
3082
|
-
|
3083
|
-
|
2982
|
+
.text-hds-m-h6 {
|
2983
|
+
font-size: 0.75rem;
|
2984
|
+
line-height: 1.25rem;
|
2985
|
+
letter-spacing: 0.08em;
|
2986
|
+
font-weight: 700;
|
3084
2987
|
}
|
3085
2988
|
|
3086
|
-
.text-
|
3087
|
-
|
3088
|
-
|
2989
|
+
.text-hds-m-quote {
|
2990
|
+
font-size: 1.125rem;
|
2991
|
+
line-height: 1.75rem;
|
2992
|
+
letter-spacing: -0.01em;
|
2993
|
+
font-weight: 400;
|
3089
2994
|
}
|
3090
2995
|
|
3091
|
-
.text-
|
3092
|
-
|
3093
|
-
|
2996
|
+
.text-hds-m-sub1 {
|
2997
|
+
font-size: 1.25rem;
|
2998
|
+
line-height: 2rem;
|
2999
|
+
letter-spacing: -0.01em;
|
3000
|
+
font-weight: 400;
|
3094
3001
|
}
|
3095
3002
|
|
3096
|
-
.text-
|
3097
|
-
|
3098
|
-
|
3003
|
+
.text-hds-m-sub2 {
|
3004
|
+
font-size: 1.125rem;
|
3005
|
+
line-height: 1.75rem;
|
3006
|
+
letter-spacing: -0.01em;
|
3007
|
+
font-weight: 400;
|
3099
3008
|
}
|
3100
3009
|
|
3101
|
-
.text-
|
3102
|
-
|
3103
|
-
|
3010
|
+
.text-sm {
|
3011
|
+
font-size: 0.875rem;
|
3012
|
+
line-height: 1.25rem;
|
3104
3013
|
}
|
3105
3014
|
|
3106
|
-
.text-
|
3107
|
-
|
3108
|
-
|
3015
|
+
.text-xl {
|
3016
|
+
font-size: 1.25rem;
|
3017
|
+
line-height: 1.75rem;
|
3109
3018
|
}
|
3110
3019
|
|
3111
|
-
.text-
|
3112
|
-
|
3113
|
-
|
3020
|
+
.text-xs {
|
3021
|
+
font-size: 0.75rem;
|
3022
|
+
line-height: 1rem;
|
3114
3023
|
}
|
3115
3024
|
|
3116
|
-
.
|
3117
|
-
|
3118
|
-
color: rgb(113 0 44 / var(--tw-text-opacity));
|
3025
|
+
.font-medium {
|
3026
|
+
font-weight: 500;
|
3119
3027
|
}
|
3120
3028
|
|
3121
|
-
.
|
3122
|
-
|
3123
|
-
color: rgb(140 73 250 / var(--tw-text-opacity));
|
3029
|
+
.font-semibold {
|
3030
|
+
font-weight: 600;
|
3124
3031
|
}
|
3125
3032
|
|
3126
|
-
.
|
3127
|
-
|
3128
|
-
color: rgb(63 1 166 / var(--tw-text-opacity));
|
3033
|
+
.italic {
|
3034
|
+
font-style: italic;
|
3129
3035
|
}
|
3130
3036
|
|
3131
|
-
.
|
3132
|
-
|
3133
|
-
color: rgb(17 27 41 / var(--tw-text-opacity));
|
3037
|
+
.not-italic {
|
3038
|
+
font-style: normal;
|
3134
3039
|
}
|
3135
3040
|
|
3136
3041
|
.text-amber-100 {
|
@@ -3168,6 +3073,11 @@ select {
|
|
3168
3073
|
color: rgb(153 55 0 / var(--tw-text-opacity));
|
3169
3074
|
}
|
3170
3075
|
|
3076
|
+
.text-amber-800 {
|
3077
|
+
--tw-text-opacity: 1;
|
3078
|
+
color: rgb(120 36 0 / var(--tw-text-opacity));
|
3079
|
+
}
|
3080
|
+
|
3171
3081
|
.text-amber-900 {
|
3172
3082
|
--tw-text-opacity: 1;
|
3173
3083
|
color: rgb(71 21 0 / var(--tw-text-opacity));
|
@@ -3198,6 +3108,31 @@ select {
|
|
3198
3108
|
color: rgb(198 214 255 / var(--tw-text-opacity));
|
3199
3109
|
}
|
3200
3110
|
|
3111
|
+
.text-blue-400 {
|
3112
|
+
--tw-text-opacity: 1;
|
3113
|
+
color: rgb(128 163 255 / var(--tw-text-opacity));
|
3114
|
+
}
|
3115
|
+
|
3116
|
+
.text-blue-500 {
|
3117
|
+
--tw-text-opacity: 1;
|
3118
|
+
color: rgb(57 112 253 / var(--tw-text-opacity));
|
3119
|
+
}
|
3120
|
+
|
3121
|
+
.text-blue-600 {
|
3122
|
+
--tw-text-opacity: 1;
|
3123
|
+
color: rgb(30 86 227 / var(--tw-text-opacity));
|
3124
|
+
}
|
3125
|
+
|
3126
|
+
.text-blue-700 {
|
3127
|
+
--tw-text-opacity: 1;
|
3128
|
+
color: rgb(13 65 198 / var(--tw-text-opacity));
|
3129
|
+
}
|
3130
|
+
|
3131
|
+
.text-blue-800 {
|
3132
|
+
--tw-text-opacity: 1;
|
3133
|
+
color: rgb(0 40 142 / var(--tw-text-opacity));
|
3134
|
+
}
|
3135
|
+
|
3201
3136
|
.text-blue-900 {
|
3202
3137
|
--tw-text-opacity: 1;
|
3203
3138
|
color: rgb(0 28 99 / var(--tw-text-opacity));
|
@@ -3238,6 +3173,11 @@ select {
|
|
3238
3173
|
color: rgb(0 90 108 / var(--tw-text-opacity));
|
3239
3174
|
}
|
3240
3175
|
|
3176
|
+
.text-cyan-800 {
|
3177
|
+
--tw-text-opacity: 1;
|
3178
|
+
color: rgb(0 57 69 / var(--tw-text-opacity));
|
3179
|
+
}
|
3180
|
+
|
3241
3181
|
.text-cyan-900 {
|
3242
3182
|
--tw-text-opacity: 1;
|
3243
3183
|
color: rgb(0 35 43 / var(--tw-text-opacity));
|
@@ -3278,11 +3218,26 @@ select {
|
|
3278
3218
|
color: rgb(0 96 67 / var(--tw-text-opacity));
|
3279
3219
|
}
|
3280
3220
|
|
3221
|
+
.text-green-800 {
|
3222
|
+
--tw-text-opacity: 1;
|
3223
|
+
color: rgb(0 60 43 / var(--tw-text-opacity));
|
3224
|
+
}
|
3225
|
+
|
3281
3226
|
.text-green-900 {
|
3282
3227
|
--tw-text-opacity: 1;
|
3283
3228
|
color: rgb(0 40 29 / var(--tw-text-opacity));
|
3284
3229
|
}
|
3285
3230
|
|
3231
|
+
.text-neutral-0 {
|
3232
|
+
--tw-text-opacity: 1;
|
3233
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
3234
|
+
}
|
3235
|
+
|
3236
|
+
.text-neutral-100 {
|
3237
|
+
--tw-text-opacity: 1;
|
3238
|
+
color: rgb(243 244 246 / var(--tw-text-opacity));
|
3239
|
+
}
|
3240
|
+
|
3286
3241
|
.text-neutral-1000 {
|
3287
3242
|
--tw-text-opacity: 1;
|
3288
3243
|
color: rgb(0 6 21 / var(--tw-text-opacity));
|
@@ -3298,16 +3253,51 @@ select {
|
|
3298
3253
|
color: rgb(229 231 235 / var(--tw-text-opacity));
|
3299
3254
|
}
|
3300
3255
|
|
3256
|
+
.text-neutral-300 {
|
3257
|
+
--tw-text-opacity: 1;
|
3258
|
+
color: rgb(210 214 219 / var(--tw-text-opacity));
|
3259
|
+
}
|
3260
|
+
|
3261
|
+
.text-neutral-400 {
|
3262
|
+
--tw-text-opacity: 1;
|
3263
|
+
color: rgb(157 164 174 / var(--tw-text-opacity));
|
3264
|
+
}
|
3265
|
+
|
3301
3266
|
.text-neutral-50 {
|
3302
3267
|
--tw-text-opacity: 1;
|
3303
3268
|
color: rgb(249 250 251 / var(--tw-text-opacity));
|
3304
3269
|
}
|
3305
3270
|
|
3271
|
+
.text-neutral-500 {
|
3272
|
+
--tw-text-opacity: 1;
|
3273
|
+
color: rgb(108 115 127 / var(--tw-text-opacity));
|
3274
|
+
}
|
3275
|
+
|
3276
|
+
.text-neutral-600 {
|
3277
|
+
--tw-text-opacity: 1;
|
3278
|
+
color: rgb(77 87 97 / var(--tw-text-opacity));
|
3279
|
+
}
|
3280
|
+
|
3281
|
+
.text-neutral-700 {
|
3282
|
+
--tw-text-opacity: 1;
|
3283
|
+
color: rgb(56 66 80 / var(--tw-text-opacity));
|
3284
|
+
}
|
3285
|
+
|
3286
|
+
.text-neutral-800 {
|
3287
|
+
--tw-text-opacity: 1;
|
3288
|
+
color: rgb(31 42 55 / var(--tw-text-opacity));
|
3289
|
+
}
|
3290
|
+
|
3306
3291
|
.text-neutral-850 {
|
3307
3292
|
--tw-text-opacity: 1;
|
3308
3293
|
color: rgb(24 34 47 / var(--tw-text-opacity));
|
3309
3294
|
}
|
3310
3295
|
|
3296
|
+
.text-neutral-900 {
|
3297
|
+
--tw-text-opacity: 1;
|
3298
|
+
color: rgb(17 25 39 / var(--tw-text-opacity));
|
3299
|
+
}
|
3300
|
+
|
3311
3301
|
.text-neutral-950 {
|
3312
3302
|
--tw-text-opacity: 1;
|
3313
3303
|
color: rgb(13 20 32 / var(--tw-text-opacity));
|
@@ -3368,16 +3358,31 @@ select {
|
|
3368
3358
|
color: rgb(255 188 214 / var(--tw-text-opacity));
|
3369
3359
|
}
|
3370
3360
|
|
3361
|
+
.text-pink-400 {
|
3362
|
+
--tw-text-opacity: 1;
|
3363
|
+
color: rgb(246 119 170 / var(--tw-text-opacity));
|
3364
|
+
}
|
3365
|
+
|
3371
3366
|
.text-pink-500 {
|
3372
3367
|
--tw-text-opacity: 1;
|
3373
3368
|
color: rgb(225 58 124 / var(--tw-text-opacity));
|
3374
3369
|
}
|
3375
3370
|
|
3371
|
+
.text-pink-600 {
|
3372
|
+
--tw-text-opacity: 1;
|
3373
|
+
color: rgb(194 30 95 / var(--tw-text-opacity));
|
3374
|
+
}
|
3375
|
+
|
3376
3376
|
.text-pink-700 {
|
3377
3377
|
--tw-text-opacity: 1;
|
3378
3378
|
color: rgb(165 10 72 / var(--tw-text-opacity));
|
3379
3379
|
}
|
3380
3380
|
|
3381
|
+
.text-pink-800 {
|
3382
|
+
--tw-text-opacity: 1;
|
3383
|
+
color: rgb(113 0 44 / var(--tw-text-opacity));
|
3384
|
+
}
|
3385
|
+
|
3381
3386
|
.text-pink-900 {
|
3382
3387
|
--tw-text-opacity: 1;
|
3383
3388
|
color: rgb(73 0 29 / var(--tw-text-opacity));
|
@@ -3403,6 +3408,11 @@ select {
|
|
3403
3408
|
color: rgb(180 135 255 / var(--tw-text-opacity));
|
3404
3409
|
}
|
3405
3410
|
|
3411
|
+
.text-purple-500 {
|
3412
|
+
--tw-text-opacity: 1;
|
3413
|
+
color: rgb(140 73 250 / var(--tw-text-opacity));
|
3414
|
+
}
|
3415
|
+
|
3406
3416
|
.text-purple-600 {
|
3407
3417
|
--tw-text-opacity: 1;
|
3408
3418
|
color: rgb(113 43 227 / var(--tw-text-opacity));
|
@@ -3413,6 +3423,11 @@ select {
|
|
3413
3423
|
color: rgb(94 19 215 / var(--tw-text-opacity));
|
3414
3424
|
}
|
3415
3425
|
|
3426
|
+
.text-purple-800 {
|
3427
|
+
--tw-text-opacity: 1;
|
3428
|
+
color: rgb(63 1 166 / var(--tw-text-opacity));
|
3429
|
+
}
|
3430
|
+
|
3416
3431
|
.text-purple-900 {
|
3417
3432
|
--tw-text-opacity: 1;
|
3418
3433
|
color: rgb(41 0 107 / var(--tw-text-opacity));
|
@@ -3458,6 +3473,11 @@ select {
|
|
3458
3473
|
color: rgb(152 26 30 / var(--tw-text-opacity));
|
3459
3474
|
}
|
3460
3475
|
|
3476
|
+
.text-storybook-default-heading {
|
3477
|
+
--tw-text-opacity: 1;
|
3478
|
+
color: rgb(17 27 41 / var(--tw-text-opacity));
|
3479
|
+
}
|
3480
|
+
|
3461
3481
|
.text-yellow-100 {
|
3462
3482
|
--tw-text-opacity: 1;
|
3463
3483
|
color: rgb(255 249 199 / var(--tw-text-opacity));
|
@@ -4909,259 +4929,291 @@ select {
|
|
4909
4929
|
}
|
4910
4930
|
|
4911
4931
|
@media (min-width: 600px) {
|
4912
|
-
.
|
4913
|
-
|
4932
|
+
.tb\:visible {
|
4933
|
+
visibility: visible;
|
4934
|
+
}
|
4935
|
+
|
4936
|
+
.tb\:ml-0 {
|
4937
|
+
margin-left: 0px;
|
4938
|
+
}
|
4939
|
+
|
4940
|
+
.tb\:flex {
|
4941
|
+
display: flex;
|
4942
|
+
}
|
4943
|
+
|
4944
|
+
.tb\:inline-flex {
|
4945
|
+
display: inline-flex;
|
4914
4946
|
}
|
4915
4947
|
|
4916
|
-
.
|
4948
|
+
.tb\:hidden {
|
4917
4949
|
display: none;
|
4918
4950
|
}
|
4919
4951
|
|
4920
|
-
.
|
4952
|
+
.tb\:w-fit {
|
4921
4953
|
width: -webkit-fit-content;
|
4922
4954
|
width: -moz-fit-content;
|
4923
4955
|
width: fit-content;
|
4924
4956
|
}
|
4925
4957
|
|
4926
|
-
.
|
4958
|
+
.tb\:min-w-\[18rem\] {
|
4959
|
+
min-width: 18rem;
|
4960
|
+
}
|
4961
|
+
|
4962
|
+
.tb\:flex-col {
|
4963
|
+
flex-direction: column;
|
4964
|
+
}
|
4965
|
+
|
4966
|
+
.tb\:items-center {
|
4967
|
+
align-items: center;
|
4968
|
+
}
|
4969
|
+
|
4970
|
+
.tb\:rounded-2xl {
|
4971
|
+
border-radius: 1rem;
|
4972
|
+
}
|
4973
|
+
|
4974
|
+
.tb\:p-8 {
|
4975
|
+
padding: 2rem;
|
4976
|
+
}
|
4977
|
+
|
4978
|
+
.tb\:text-hds-t-body1 {
|
4927
4979
|
font-size: 1rem;
|
4928
4980
|
line-height: 1.75rem;
|
4929
4981
|
letter-spacing: -0.01em;
|
4930
4982
|
font-weight: 400;
|
4931
4983
|
}
|
4932
4984
|
|
4933
|
-
.
|
4985
|
+
.tb\:text-hds-t-body1-bold {
|
4934
4986
|
font-size: 1rem;
|
4935
4987
|
line-height: 1.75rem;
|
4936
4988
|
letter-spacing: -0.01em;
|
4937
4989
|
font-weight: 700;
|
4938
4990
|
}
|
4939
4991
|
|
4940
|
-
.
|
4992
|
+
.tb\:text-hds-t-body1-medium {
|
4941
4993
|
font-size: 1rem;
|
4942
4994
|
line-height: 1.75rem;
|
4943
4995
|
letter-spacing: -0.01em;
|
4944
4996
|
font-weight: 500;
|
4945
4997
|
}
|
4946
4998
|
|
4947
|
-
.
|
4999
|
+
.tb\:text-hds-t-body1-semi-bold {
|
4948
5000
|
font-size: 1rem;
|
4949
5001
|
line-height: 1.75rem;
|
4950
5002
|
letter-spacing: -0.01em;
|
4951
5003
|
font-weight: 600;
|
4952
5004
|
}
|
4953
5005
|
|
4954
|
-
.
|
5006
|
+
.tb\:text-hds-t-body1c {
|
4955
5007
|
font-size: 1rem;
|
4956
5008
|
line-height: 1.5rem;
|
4957
5009
|
letter-spacing: -0.01em;
|
4958
5010
|
font-weight: 400;
|
4959
5011
|
}
|
4960
5012
|
|
4961
|
-
.
|
5013
|
+
.tb\:text-hds-t-body1c-bold {
|
4962
5014
|
font-size: 1rem;
|
4963
5015
|
line-height: 1.5rem;
|
4964
5016
|
letter-spacing: -0.01em;
|
4965
5017
|
font-weight: 700;
|
4966
5018
|
}
|
4967
5019
|
|
4968
|
-
.
|
5020
|
+
.tb\:text-hds-t-body1c-medium {
|
4969
5021
|
font-size: 1rem;
|
4970
5022
|
line-height: 1.5rem;
|
4971
5023
|
letter-spacing: -0.01em;
|
4972
5024
|
font-weight: 500;
|
4973
5025
|
}
|
4974
5026
|
|
4975
|
-
.
|
5027
|
+
.tb\:text-hds-t-body1c-semi-bold {
|
4976
5028
|
font-size: 1rem;
|
4977
5029
|
line-height: 1.5rem;
|
4978
5030
|
letter-spacing: -0.01em;
|
4979
5031
|
font-weight: 600;
|
4980
5032
|
}
|
4981
5033
|
|
4982
|
-
.
|
5034
|
+
.tb\:text-hds-t-body2 {
|
4983
5035
|
font-size: 0.938rem;
|
4984
5036
|
line-height: 1.625rem;
|
4985
5037
|
letter-spacing: -0.01em;
|
4986
5038
|
font-weight: 400;
|
4987
5039
|
}
|
4988
5040
|
|
4989
|
-
.
|
5041
|
+
.tb\:text-hds-t-body2-bold {
|
4990
5042
|
font-size: 0.938rem;
|
4991
5043
|
line-height: 1.625rem;
|
4992
5044
|
letter-spacing: -0.01em;
|
4993
5045
|
font-weight: 700;
|
4994
5046
|
}
|
4995
5047
|
|
4996
|
-
.
|
5048
|
+
.tb\:text-hds-t-body2-medium {
|
4997
5049
|
font-size: 0.938rem;
|
4998
5050
|
line-height: 1.625rem;
|
4999
5051
|
letter-spacing: -0.01em;
|
5000
5052
|
font-weight: 500;
|
5001
5053
|
}
|
5002
5054
|
|
5003
|
-
.
|
5055
|
+
.tb\:text-hds-t-body2-semi-bold {
|
5004
5056
|
font-size: 0.938rem;
|
5005
5057
|
line-height: 1.625rem;
|
5006
5058
|
letter-spacing: -0.01em;
|
5007
5059
|
font-weight: 600;
|
5008
5060
|
}
|
5009
5061
|
|
5010
|
-
.
|
5062
|
+
.tb\:text-hds-t-body2c {
|
5011
5063
|
font-size: 0.938rem;
|
5012
5064
|
line-height: 1.375rem;
|
5013
5065
|
letter-spacing: -0.01em;
|
5014
5066
|
font-weight: 400;
|
5015
5067
|
}
|
5016
5068
|
|
5017
|
-
.
|
5069
|
+
.tb\:text-hds-t-body2c-bold {
|
5018
5070
|
font-size: 0.938rem;
|
5019
5071
|
line-height: 1.375rem;
|
5020
5072
|
letter-spacing: -0.01em;
|
5021
5073
|
font-weight: 700;
|
5022
5074
|
}
|
5023
5075
|
|
5024
|
-
.
|
5076
|
+
.tb\:text-hds-t-body2c-medium {
|
5025
5077
|
font-size: 0.938rem;
|
5026
5078
|
line-height: 1.375rem;
|
5027
5079
|
letter-spacing: -0.01em;
|
5028
5080
|
font-weight: 500;
|
5029
5081
|
}
|
5030
5082
|
|
5031
|
-
.
|
5083
|
+
.tb\:text-hds-t-body2c-semi-bold {
|
5032
5084
|
font-size: 0.938rem;
|
5033
5085
|
line-height: 1.375rem;
|
5034
5086
|
letter-spacing: -0.01em;
|
5035
5087
|
font-weight: 600;
|
5036
5088
|
}
|
5037
5089
|
|
5038
|
-
.
|
5090
|
+
.tb\:text-hds-t-body3 {
|
5039
5091
|
font-size: 0.875rem;
|
5040
5092
|
line-height: 1.5rem;
|
5041
5093
|
letter-spacing: ;
|
5042
5094
|
font-weight: 400;
|
5043
5095
|
}
|
5044
5096
|
|
5045
|
-
.
|
5097
|
+
.tb\:text-hds-t-body3-bold {
|
5046
5098
|
font-size: 0.875rem;
|
5047
5099
|
line-height: 1.5rem;
|
5048
5100
|
letter-spacing: ;
|
5049
5101
|
font-weight: 700;
|
5050
5102
|
}
|
5051
5103
|
|
5052
|
-
.
|
5104
|
+
.tb\:text-hds-t-body3-medium {
|
5053
5105
|
font-size: 0.875rem;
|
5054
5106
|
line-height: 1.5rem;
|
5055
5107
|
letter-spacing: ;
|
5056
5108
|
font-weight: 500;
|
5057
5109
|
}
|
5058
5110
|
|
5059
|
-
.
|
5111
|
+
.tb\:text-hds-t-body3-semi-bold {
|
5060
5112
|
font-size: 0.875rem;
|
5061
5113
|
line-height: 1.5rem;
|
5062
5114
|
letter-spacing: ;
|
5063
5115
|
font-weight: 600;
|
5064
5116
|
}
|
5065
5117
|
|
5066
|
-
.
|
5118
|
+
.tb\:text-hds-t-body3c {
|
5067
5119
|
font-size: 0.875rem;
|
5068
5120
|
line-height: 1.25rem;
|
5069
5121
|
letter-spacing: ;
|
5070
5122
|
font-weight: 400;
|
5071
5123
|
}
|
5072
5124
|
|
5073
|
-
.
|
5125
|
+
.tb\:text-hds-t-body3c-bold {
|
5074
5126
|
font-size: 0.875rem;
|
5075
5127
|
line-height: 1.25rem;
|
5076
5128
|
letter-spacing: ;
|
5077
5129
|
font-weight: 700;
|
5078
5130
|
}
|
5079
5131
|
|
5080
|
-
.
|
5132
|
+
.tb\:text-hds-t-body3c-medium {
|
5081
5133
|
font-size: 0.875rem;
|
5082
5134
|
line-height: 1.25rem;
|
5083
5135
|
letter-spacing: ;
|
5084
5136
|
font-weight: 500;
|
5085
5137
|
}
|
5086
5138
|
|
5087
|
-
.
|
5139
|
+
.tb\:text-hds-t-body3c-semi-bold {
|
5088
5140
|
font-size: 0.875rem;
|
5089
5141
|
line-height: 1.25rem;
|
5090
5142
|
letter-spacing: ;
|
5091
5143
|
font-weight: 600;
|
5092
5144
|
}
|
5093
5145
|
|
5094
|
-
.
|
5146
|
+
.tb\:text-hds-t-code1 {
|
5095
5147
|
font-size: 1rem;
|
5096
5148
|
line-height: 1.75rem;
|
5097
5149
|
letter-spacing: -0.01em;
|
5098
5150
|
font-weight: 400;
|
5099
5151
|
}
|
5100
5152
|
|
5101
|
-
.
|
5153
|
+
.tb\:text-hds-t-code2 {
|
5102
5154
|
font-size: 0.938rem;
|
5103
5155
|
line-height: 1.625rem;
|
5104
5156
|
letter-spacing: -0.01em;
|
5105
5157
|
font-weight: 400;
|
5106
5158
|
}
|
5107
5159
|
|
5108
|
-
.
|
5160
|
+
.tb\:text-hds-t-h1 {
|
5109
5161
|
font-size: 3rem;
|
5110
5162
|
line-height: 1.25;
|
5111
5163
|
letter-spacing: -0.02em;
|
5112
5164
|
font-weight: 700;
|
5113
5165
|
}
|
5114
5166
|
|
5115
|
-
.
|
5167
|
+
.tb\:text-hds-t-h2 {
|
5116
5168
|
font-size: 2.25rem;
|
5117
5169
|
line-height: 3rem;
|
5118
5170
|
letter-spacing: -0.02em;
|
5119
5171
|
font-weight: 700;
|
5120
5172
|
}
|
5121
5173
|
|
5122
|
-
.
|
5174
|
+
.tb\:text-hds-t-h3 {
|
5123
5175
|
font-size: 1.875rem;
|
5124
5176
|
line-height: 2.5rem;
|
5125
5177
|
letter-spacing: -0.02em;
|
5126
5178
|
font-weight: 700;
|
5127
5179
|
}
|
5128
5180
|
|
5129
|
-
.
|
5181
|
+
.tb\:text-hds-t-h4 {
|
5130
5182
|
font-size: 1.25rem;
|
5131
5183
|
line-height: 2rem;
|
5132
5184
|
letter-spacing: -0.02em;
|
5133
5185
|
font-weight: 600;
|
5134
5186
|
}
|
5135
5187
|
|
5136
|
-
.
|
5188
|
+
.tb\:text-hds-t-h5 {
|
5137
5189
|
font-size: 1.125rem;
|
5138
5190
|
line-height: 1.75rem;
|
5139
5191
|
letter-spacing: -0.02em;
|
5140
5192
|
font-weight: 600;
|
5141
5193
|
}
|
5142
5194
|
|
5143
|
-
.
|
5195
|
+
.tb\:text-hds-t-h6 {
|
5144
5196
|
font-size: 0.75rem;
|
5145
5197
|
line-height: 1.25rem;
|
5146
5198
|
letter-spacing: 0.08em;
|
5147
5199
|
font-weight: 700;
|
5148
5200
|
}
|
5149
5201
|
|
5150
|
-
.
|
5202
|
+
.tb\:text-hds-t-quote {
|
5151
5203
|
font-size: 1.125rem;
|
5152
5204
|
line-height: 1.75rem;
|
5153
5205
|
letter-spacing: -0.01em;
|
5154
5206
|
font-weight: 400;
|
5155
5207
|
}
|
5156
5208
|
|
5157
|
-
.
|
5209
|
+
.tb\:text-hds-t-sub1 {
|
5158
5210
|
font-size: 1.25rem;
|
5159
5211
|
line-height: 2rem;
|
5160
5212
|
letter-spacing: -0.01em;
|
5161
5213
|
font-weight: 400;
|
5162
5214
|
}
|
5163
5215
|
|
5164
|
-
.
|
5216
|
+
.tb\:text-hds-t-sub2 {
|
5165
5217
|
font-size: 1.125rem;
|
5166
5218
|
line-height: 1.75rem;
|
5167
5219
|
letter-spacing: -0.01em;
|
@@ -5170,10 +5222,6 @@ select {
|
|
5170
5222
|
}
|
5171
5223
|
|
5172
5224
|
@media (min-width: 640px) {
|
5173
|
-
.sm\:visible {
|
5174
|
-
visibility: visible;
|
5175
|
-
}
|
5176
|
-
|
5177
5225
|
.sm\:-mx-0 {
|
5178
5226
|
margin-left: -0px;
|
5179
5227
|
margin-right: -0px;
|
@@ -5219,10 +5267,6 @@ select {
|
|
5219
5267
|
width: 3rem;
|
5220
5268
|
}
|
5221
5269
|
|
5222
|
-
.sm\:w-52 {
|
5223
|
-
width: 13rem;
|
5224
|
-
}
|
5225
|
-
|
5226
5270
|
.sm\:max-w-sm {
|
5227
5271
|
max-width: 24rem;
|
5228
5272
|
}
|
@@ -5388,291 +5432,259 @@ select {
|
|
5388
5432
|
}
|
5389
5433
|
|
5390
5434
|
@media (min-width: 1240px) {
|
5391
|
-
.
|
5435
|
+
.db\:-left-5 {
|
5392
5436
|
left: -1.25rem;
|
5393
5437
|
}
|
5394
5438
|
|
5395
|
-
.
|
5439
|
+
.db\:-right-5 {
|
5396
5440
|
right: -1.25rem;
|
5397
5441
|
}
|
5398
5442
|
|
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 {
|
5443
|
+
.db\:w-fit {
|
5412
5444
|
width: -webkit-fit-content;
|
5413
5445
|
width: -moz-fit-content;
|
5414
5446
|
width: fit-content;
|
5415
5447
|
}
|
5416
5448
|
|
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 {
|
5449
|
+
.db\:text-hds-d-body1 {
|
5438
5450
|
font-size: 1rem;
|
5439
5451
|
line-height: 1.75rem;
|
5440
5452
|
letter-spacing: -0.01em;
|
5441
5453
|
font-weight: 400;
|
5442
5454
|
}
|
5443
5455
|
|
5444
|
-
.
|
5456
|
+
.db\:text-hds-d-body1-bold {
|
5445
5457
|
font-size: 1rem;
|
5446
5458
|
line-height: 1.75rem;
|
5447
5459
|
letter-spacing: -0.01em;
|
5448
5460
|
font-weight: 700;
|
5449
5461
|
}
|
5450
5462
|
|
5451
|
-
.
|
5463
|
+
.db\:text-hds-d-body1-medium {
|
5452
5464
|
font-size: 1rem;
|
5453
5465
|
line-height: 1.75rem;
|
5454
5466
|
letter-spacing: -0.01em;
|
5455
5467
|
font-weight: 500;
|
5456
5468
|
}
|
5457
5469
|
|
5458
|
-
.
|
5470
|
+
.db\:text-hds-d-body1-semi-bold {
|
5459
5471
|
font-size: 1rem;
|
5460
5472
|
line-height: 1.75rem;
|
5461
5473
|
letter-spacing: -0.01em;
|
5462
5474
|
font-weight: 600;
|
5463
5475
|
}
|
5464
5476
|
|
5465
|
-
.
|
5477
|
+
.db\:text-hds-d-body1c {
|
5466
5478
|
font-size: 1rem;
|
5467
5479
|
line-height: 1.5rem;
|
5468
5480
|
letter-spacing: -0.01em;
|
5469
5481
|
font-weight: 400;
|
5470
5482
|
}
|
5471
5483
|
|
5472
|
-
.
|
5484
|
+
.db\:text-hds-d-body1c-bold {
|
5473
5485
|
font-size: 1rem;
|
5474
5486
|
line-height: 1.5rem;
|
5475
5487
|
letter-spacing: -0.01em;
|
5476
5488
|
font-weight: 700;
|
5477
5489
|
}
|
5478
5490
|
|
5479
|
-
.
|
5491
|
+
.db\:text-hds-d-body1c-medium {
|
5480
5492
|
font-size: 1rem;
|
5481
5493
|
line-height: 1.5rem;
|
5482
5494
|
letter-spacing: -0.01em;
|
5483
5495
|
font-weight: 500;
|
5484
5496
|
}
|
5485
5497
|
|
5486
|
-
.
|
5498
|
+
.db\:text-hds-d-body1c-semi-bold {
|
5487
5499
|
font-size: 1rem;
|
5488
5500
|
line-height: 1.5rem;
|
5489
5501
|
letter-spacing: -0.01em;
|
5490
5502
|
font-weight: 600;
|
5491
5503
|
}
|
5492
5504
|
|
5493
|
-
.
|
5505
|
+
.db\:text-hds-d-body2 {
|
5494
5506
|
font-size: 0.938rem;
|
5495
5507
|
line-height: 1.625rem;
|
5496
5508
|
letter-spacing: -0.01em;
|
5497
5509
|
font-weight: 400;
|
5498
5510
|
}
|
5499
5511
|
|
5500
|
-
.
|
5512
|
+
.db\:text-hds-d-body2-bold {
|
5501
5513
|
font-size: 0.938rem;
|
5502
5514
|
line-height: 1.625rem;
|
5503
5515
|
letter-spacing: -0.01em;
|
5504
5516
|
font-weight: 700;
|
5505
5517
|
}
|
5506
5518
|
|
5507
|
-
.
|
5519
|
+
.db\:text-hds-d-body2-medium {
|
5508
5520
|
font-size: 0.938rem;
|
5509
5521
|
line-height: 1.625rem;
|
5510
5522
|
letter-spacing: -0.01em;
|
5511
5523
|
font-weight: 500;
|
5512
5524
|
}
|
5513
5525
|
|
5514
|
-
.
|
5526
|
+
.db\:text-hds-d-body2-semi-bold {
|
5515
5527
|
font-size: 0.938rem;
|
5516
5528
|
line-height: 1.625rem;
|
5517
5529
|
letter-spacing: -0.01em;
|
5518
5530
|
font-weight: 600;
|
5519
5531
|
}
|
5520
5532
|
|
5521
|
-
.
|
5533
|
+
.db\:text-hds-d-body2c {
|
5522
5534
|
font-size: 0.938rem;
|
5523
5535
|
line-height: 1.375rem;
|
5524
5536
|
letter-spacing: -0.01em;
|
5525
5537
|
font-weight: 400;
|
5526
5538
|
}
|
5527
5539
|
|
5528
|
-
.
|
5540
|
+
.db\:text-hds-d-body2c-bold {
|
5529
5541
|
font-size: 0.938rem;
|
5530
5542
|
line-height: 1.375rem;
|
5531
5543
|
letter-spacing: -0.01em;
|
5532
5544
|
font-weight: 700;
|
5533
5545
|
}
|
5534
5546
|
|
5535
|
-
.
|
5547
|
+
.db\:text-hds-d-body2c-medium {
|
5536
5548
|
font-size: 0.938rem;
|
5537
5549
|
line-height: 1.375rem;
|
5538
5550
|
letter-spacing: -0.01em;
|
5539
5551
|
font-weight: 500;
|
5540
5552
|
}
|
5541
5553
|
|
5542
|
-
.
|
5554
|
+
.db\:text-hds-d-body2c-semi-bold {
|
5543
5555
|
font-size: 0.938rem;
|
5544
5556
|
line-height: 1.375rem;
|
5545
5557
|
letter-spacing: -0.01em;
|
5546
5558
|
font-weight: 600;
|
5547
5559
|
}
|
5548
5560
|
|
5549
|
-
.
|
5561
|
+
.db\:text-hds-d-body3 {
|
5550
5562
|
font-size: 0.875rem;
|
5551
5563
|
line-height: 1.5rem;
|
5552
5564
|
letter-spacing: ;
|
5553
5565
|
font-weight: 400;
|
5554
5566
|
}
|
5555
5567
|
|
5556
|
-
.
|
5568
|
+
.db\:text-hds-d-body3-bold {
|
5557
5569
|
font-size: 0.875rem;
|
5558
5570
|
line-height: 1.5rem;
|
5559
5571
|
letter-spacing: ;
|
5560
5572
|
font-weight: 700;
|
5561
5573
|
}
|
5562
5574
|
|
5563
|
-
.
|
5575
|
+
.db\:text-hds-d-body3-medium {
|
5564
5576
|
font-size: 0.875rem;
|
5565
5577
|
line-height: 1.5rem;
|
5566
5578
|
letter-spacing: ;
|
5567
5579
|
font-weight: 500;
|
5568
5580
|
}
|
5569
5581
|
|
5570
|
-
.
|
5582
|
+
.db\:text-hds-d-body3-semi-bold {
|
5571
5583
|
font-size: 0.875rem;
|
5572
5584
|
line-height: 1.5rem;
|
5573
5585
|
letter-spacing: ;
|
5574
5586
|
font-weight: 600;
|
5575
5587
|
}
|
5576
5588
|
|
5577
|
-
.
|
5589
|
+
.db\:text-hds-d-body3c {
|
5578
5590
|
font-size: 0.875rem;
|
5579
5591
|
line-height: 1.25rem;
|
5580
5592
|
letter-spacing: ;
|
5581
5593
|
font-weight: 400;
|
5582
5594
|
}
|
5583
5595
|
|
5584
|
-
.
|
5596
|
+
.db\:text-hds-d-body3c-bold {
|
5585
5597
|
font-size: 0.875rem;
|
5586
5598
|
line-height: 1.25rem;
|
5587
5599
|
letter-spacing: ;
|
5588
5600
|
font-weight: 700;
|
5589
5601
|
}
|
5590
5602
|
|
5591
|
-
.
|
5603
|
+
.db\:text-hds-d-body3c-medium {
|
5592
5604
|
font-size: 0.875rem;
|
5593
5605
|
line-height: 1.25rem;
|
5594
5606
|
letter-spacing: ;
|
5595
5607
|
font-weight: 500;
|
5596
5608
|
}
|
5597
5609
|
|
5598
|
-
.
|
5610
|
+
.db\:text-hds-d-body3c-semi-bold {
|
5599
5611
|
font-size: 0.875rem;
|
5600
5612
|
line-height: 1.25rem;
|
5601
5613
|
letter-spacing: ;
|
5602
5614
|
font-weight: 600;
|
5603
5615
|
}
|
5604
5616
|
|
5605
|
-
.
|
5617
|
+
.db\:text-hds-d-code1 {
|
5606
5618
|
font-size: 1rem;
|
5607
5619
|
line-height: 1.75rem;
|
5608
5620
|
letter-spacing: -0.01em;
|
5609
5621
|
font-weight: 400;
|
5610
5622
|
}
|
5611
5623
|
|
5612
|
-
.
|
5624
|
+
.db\:text-hds-d-code2 {
|
5613
5625
|
font-size: 0.938rem;
|
5614
5626
|
line-height: 1.625rem;
|
5615
5627
|
letter-spacing: -0.01em;
|
5616
5628
|
font-weight: 400;
|
5617
5629
|
}
|
5618
5630
|
|
5619
|
-
.
|
5631
|
+
.db\:text-hds-d-h1 {
|
5620
5632
|
font-size: 4rem;
|
5621
5633
|
line-height: 1.125;
|
5622
5634
|
letter-spacing: -0.02em;
|
5623
5635
|
font-weight: 700;
|
5624
5636
|
}
|
5625
5637
|
|
5626
|
-
.
|
5638
|
+
.db\:text-hds-d-h2 {
|
5627
5639
|
font-size: 3rem;
|
5628
5640
|
line-height: 1.25;
|
5629
5641
|
letter-spacing: -0.02em;
|
5630
5642
|
font-weight: 700;
|
5631
5643
|
}
|
5632
5644
|
|
5633
|
-
.
|
5645
|
+
.db\:text-hds-d-h3 {
|
5634
5646
|
font-size: 2.25rem;
|
5635
5647
|
line-height: 3rem;
|
5636
5648
|
letter-spacing: -0.02em;
|
5637
5649
|
font-weight: 700;
|
5638
5650
|
}
|
5639
5651
|
|
5640
|
-
.
|
5652
|
+
.db\:text-hds-d-h4 {
|
5641
5653
|
font-size: 1.5rem;
|
5642
5654
|
line-height: 2.25rem;
|
5643
5655
|
letter-spacing: -0.02em;
|
5644
5656
|
font-weight: 600;
|
5645
5657
|
}
|
5646
5658
|
|
5647
|
-
.
|
5659
|
+
.db\:text-hds-d-h5 {
|
5648
5660
|
font-size: 1.25rem;
|
5649
5661
|
line-height: 2rem;
|
5650
5662
|
letter-spacing: -0.02em;
|
5651
5663
|
font-weight: 600;
|
5652
5664
|
}
|
5653
5665
|
|
5654
|
-
.
|
5666
|
+
.db\:text-hds-d-h6 {
|
5655
5667
|
font-size: 0.875;
|
5656
5668
|
line-height: 1.25;
|
5657
5669
|
letter-spacing: 0.08em;
|
5658
5670
|
font-weight: 700;
|
5659
5671
|
}
|
5660
5672
|
|
5661
|
-
.
|
5673
|
+
.db\:text-hds-d-quote {
|
5662
5674
|
font-size: 1.5rem;
|
5663
5675
|
line-height: 2.25rem;
|
5664
5676
|
letter-spacing: -0.01em;
|
5665
5677
|
font-weight: 400;
|
5666
5678
|
}
|
5667
5679
|
|
5668
|
-
.
|
5680
|
+
.db\:text-hds-d-sub1 {
|
5669
5681
|
font-size: 1.5rem;
|
5670
5682
|
line-height: 2.25rem;
|
5671
5683
|
letter-spacing: -0.02em;
|
5672
5684
|
font-weight: 400;
|
5673
5685
|
}
|
5674
5686
|
|
5675
|
-
.
|
5687
|
+
.db\:text-hds-d-sub2 {
|
5676
5688
|
font-size: 1.25rem;
|
5677
5689
|
line-height: 2rem;
|
5678
5690
|
letter-spacing: -0.01em;
|