@team-frieeren/components 1.0.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.
Files changed (101) hide show
  1. package/dist/components/Accordian/Accordion.d.ts +6 -0
  2. package/dist/components/Accordian/Accordion.stories.d.ts +34 -0
  3. package/dist/components/Accordian/Accordion.type.d.ts +7 -0
  4. package/dist/components/BottomSheet/BottomSheet.d.ts +2 -0
  5. package/dist/components/BottomSheet/BottomSheet.stories.d.ts +10 -0
  6. package/dist/components/BottomSheet/BottomSheet.type.d.ts +26 -0
  7. package/dist/components/BottomSheet/index.d.ts +2 -0
  8. package/dist/components/Button/Button.d.ts +16 -0
  9. package/dist/components/Button/Button.stories.d.ts +44 -0
  10. package/dist/components/Button/Button.type.d.ts +17 -0
  11. package/dist/components/Button/index.d.ts +2 -0
  12. package/dist/components/Checkbox/Checkbox.d.ts +6 -0
  13. package/dist/components/Checkbox/Checkbox.stories.d.ts +15 -0
  14. package/dist/components/Checkbox/index.d.ts +2 -0
  15. package/dist/components/Dialog/Dialog.d.ts +2 -0
  16. package/dist/components/Dialog/Dialog.stories.d.ts +10 -0
  17. package/dist/components/Dialog/Dialog.type.d.ts +22 -0
  18. package/dist/components/Funnel/Funnel.d.ts +3 -0
  19. package/dist/components/Funnel/Funnel.stories.d.ts +31 -0
  20. package/dist/components/Funnel/Funnel.type.d.ts +13 -0
  21. package/dist/components/Funnel/index.d.ts +1 -0
  22. package/dist/components/Funnel/useFunnel.d.ts +9 -0
  23. package/dist/components/Funnel/useQueryParam.d.ts +6 -0
  24. package/dist/components/Input/Input.d.ts +3 -0
  25. package/dist/components/Input/Input.stories.d.ts +6 -0
  26. package/dist/components/Input/index.d.ts +2 -0
  27. package/dist/components/Input/input.type.d.ts +10 -0
  28. package/dist/components/Popover/Popover.d.ts +5 -0
  29. package/dist/components/Popover/Popover.stories.d.ts +36 -0
  30. package/dist/components/Popover/Popover.type.d.ts +7 -0
  31. package/dist/components/Popup/Popup.d.ts +4 -0
  32. package/dist/components/Popup/Popup.stories.d.ts +21 -0
  33. package/dist/components/Popup/Popup.type.d.ts +21 -0
  34. package/dist/components/Popup/index.d.ts +2 -0
  35. package/dist/components/RadioGroup/RadioGroup.d.ts +8 -0
  36. package/dist/components/RadioGroup/RadioGroup.stories.d.ts +16 -0
  37. package/dist/components/RadioGroup/index.d.ts +2 -0
  38. package/dist/components/Select/Select.d.ts +15 -0
  39. package/dist/components/Select/Select.stories.d.ts +13 -0
  40. package/dist/components/Select/Select.type.d.ts +4 -0
  41. package/dist/components/Select/index.d.ts +2 -0
  42. package/dist/components/Tabs/Tabs.d.ts +3 -0
  43. package/dist/components/Tabs/Tabs.stories.d.ts +38 -0
  44. package/dist/components/Tabs/Tabs.type.d.ts +15 -0
  45. package/dist/components/Tabs/TabsBase.d.ts +7 -0
  46. package/dist/components/Tabs/index.d.ts +1 -0
  47. package/dist/components/Tabs/useTabsIndicator.d.ts +10 -0
  48. package/dist/components/Text/Text.d.ts +2 -0
  49. package/dist/components/Text/Text.stories.d.ts +41 -0
  50. package/dist/components/Text/Text.type.d.ts +22 -0
  51. package/dist/components/Text/index.d.ts +2 -0
  52. package/dist/components/Toast/Toast.d.ts +5 -0
  53. package/dist/components/Toast/Toast.stories.d.ts +6 -0
  54. package/dist/components/Toast/Toast.type.d.ts +31 -0
  55. package/dist/components/Toast/ToastProvider.d.ts +3 -0
  56. package/dist/components/Toast/index.d.ts +2 -0
  57. package/dist/components/Toast/useToast.d.ts +2 -0
  58. package/dist/components/Toast/useToastStack.d.ts +12 -0
  59. package/dist/components/Toggle/Toggle.d.ts +3 -0
  60. package/dist/components/Toggle/Toggle.stories.d.ts +22 -0
  61. package/dist/components/Toggle/Toggle.type.d.ts +6 -0
  62. package/dist/components/Toggle/index.d.ts +1 -0
  63. package/dist/components/layout/Box/Box.d.ts +2 -0
  64. package/dist/components/layout/Box/Box.stories.d.ts +13 -0
  65. package/dist/components/layout/Box/Box.type.d.ts +10 -0
  66. package/dist/components/layout/Box/index.d.ts +2 -0
  67. package/dist/components/layout/Container/Container.d.ts +2 -0
  68. package/dist/components/layout/Container/Container.stories.d.ts +13 -0
  69. package/dist/components/layout/Container/Container.type.d.ts +4 -0
  70. package/dist/components/layout/Container/index.d.ts +2 -0
  71. package/dist/components/layout/Flex/Flex.d.ts +2 -0
  72. package/dist/components/layout/Flex/Flex.stories.d.ts +13 -0
  73. package/dist/components/layout/Flex/Flex.type.d.ts +10 -0
  74. package/dist/components/layout/Flex/index.d.ts +2 -0
  75. package/dist/components/layout/Grid/Grid.d.ts +2 -0
  76. package/dist/components/layout/Grid/Grid.stories.d.ts +13 -0
  77. package/dist/components/layout/Grid/Grid.type.d.ts +10 -0
  78. package/dist/components/layout/Grid/index.d.ts +2 -0
  79. package/dist/hooks/useIsMounted.d.ts +1 -0
  80. package/dist/hooks/useOverlay/OverlayController.d.ts +10 -0
  81. package/dist/hooks/useOverlay/OverlayProvider.d.ts +6 -0
  82. package/dist/hooks/useOverlay/index.d.ts +2 -0
  83. package/dist/hooks/useOverlay/types.d.ts +5 -0
  84. package/dist/hooks/useOverlay/useOverlay.d.ts +10 -0
  85. package/dist/hooks/useRouter.d.ts +3 -0
  86. package/dist/index.css +1896 -0
  87. package/dist/index.d.ts +21 -0
  88. package/dist/index.js +1378 -0
  89. package/dist/router/router.type.d.ts +26 -0
  90. package/dist/router/windowRouter.d.ts +12 -0
  91. package/dist/shared/components/SwitchCase.d.ts +7 -0
  92. package/dist/shared/icon/index.d.ts +1 -0
  93. package/dist/shared/icon/isIcon.d.ts +3 -0
  94. package/dist/shared/storage/LocalStorage.d.ts +14 -0
  95. package/dist/shared/storage/MemoryStorage.d.ts +11 -0
  96. package/dist/shared/storage/SessionStorage.d.ts +14 -0
  97. package/dist/shared/storage/index.d.ts +2 -0
  98. package/dist/shared/storage/storage.type.d.ts +9 -0
  99. package/dist/utils/generateRandomKey.d.ts +1 -0
  100. package/dist/utils/getSpacingStyle.d.ts +6 -0
  101. package/package.json +91 -0
package/dist/index.css ADDED
@@ -0,0 +1,1896 @@
1
+ @charset "UTF-8";
2
+ @import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
3
+ @import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
4
+ /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
5
+ /* Document
6
+ ========================================================================== */
7
+ /**
8
+ * 1. Correct the line height in all browsers.
9
+ * 2. Prevent adjustments of font size after orientation changes in iOS.
10
+ */
11
+ html {
12
+ line-height: 1.15; /* 1 */
13
+ -webkit-text-size-adjust: 100%; /* 2 */
14
+ }
15
+
16
+ /* Sections
17
+ ========================================================================== */
18
+ /**
19
+ * Remove the margin in all browsers.
20
+ */
21
+ body {
22
+ margin: 0;
23
+ }
24
+
25
+ /**
26
+ * Render the `main` element consistently in IE.
27
+ */
28
+ main {
29
+ display: block;
30
+ }
31
+
32
+ /**
33
+ * Correct the font size and margin on `h1` elements within `section` and
34
+ * `article` contexts in Chrome, Firefox, and Safari.
35
+ */
36
+ h1 {
37
+ font-size: 2em;
38
+ margin: 0.67em 0;
39
+ }
40
+
41
+ /* Grouping content
42
+ ========================================================================== */
43
+ /**
44
+ * 1. Add the correct box sizing in Firefox.
45
+ * 2. Show the overflow in Edge and IE.
46
+ */
47
+ hr {
48
+ box-sizing: content-box; /* 1 */
49
+ height: 0; /* 1 */
50
+ overflow: visible; /* 2 */
51
+ }
52
+
53
+ /**
54
+ * 1. Correct the inheritance and scaling of font size in all browsers.
55
+ * 2. Correct the odd `em` font sizing in all browsers.
56
+ */
57
+ pre {
58
+ font-family: monospace, monospace; /* 1 */
59
+ font-size: 1em; /* 2 */
60
+ }
61
+
62
+ /* Text-level semantics
63
+ ========================================================================== */
64
+ /**
65
+ * Remove the gray background on active links in IE 10.
66
+ */
67
+ a {
68
+ background-color: transparent;
69
+ }
70
+
71
+ /**
72
+ * 1. Remove the bottom border in Chrome 57-
73
+ * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
74
+ */
75
+ abbr[title] {
76
+ border-bottom: none; /* 1 */
77
+ text-decoration: underline; /* 2 */
78
+ text-decoration: underline dotted; /* 2 */
79
+ }
80
+
81
+ /**
82
+ * Add the correct font weight in Chrome, Edge, and Safari.
83
+ */
84
+ b,
85
+ strong {
86
+ font-weight: bolder;
87
+ }
88
+
89
+ /**
90
+ * 1. Correct the inheritance and scaling of font size in all browsers.
91
+ * 2. Correct the odd `em` font sizing in all browsers.
92
+ */
93
+ code,
94
+ kbd,
95
+ samp {
96
+ font-family: monospace, monospace; /* 1 */
97
+ font-size: 1em; /* 2 */
98
+ }
99
+
100
+ /**
101
+ * Add the correct font size in all browsers.
102
+ */
103
+ small {
104
+ font-size: 80%;
105
+ }
106
+
107
+ /**
108
+ * Prevent `sub` and `sup` elements from affecting the line height in
109
+ * all browsers.
110
+ */
111
+ sub,
112
+ sup {
113
+ font-size: 75%;
114
+ line-height: 0;
115
+ position: relative;
116
+ vertical-align: baseline;
117
+ }
118
+
119
+ sub {
120
+ bottom: -0.25em;
121
+ }
122
+
123
+ sup {
124
+ top: -0.5em;
125
+ }
126
+
127
+ /* Embedded content
128
+ ========================================================================== */
129
+ /**
130
+ * Remove the border on images inside links in IE 10.
131
+ */
132
+ img {
133
+ border-style: none;
134
+ }
135
+
136
+ /* Forms
137
+ ========================================================================== */
138
+ /**
139
+ * 1. Change the font styles in all browsers.
140
+ * 2. Remove the margin in Firefox and Safari.
141
+ */
142
+ button,
143
+ input,
144
+ optgroup,
145
+ select,
146
+ textarea {
147
+ font-family: inherit; /* 1 */
148
+ font-size: 100%; /* 1 */
149
+ line-height: 1.15; /* 1 */
150
+ margin: 0; /* 2 */
151
+ }
152
+
153
+ /**
154
+ * Show the overflow in IE.
155
+ * 1. Show the overflow in Edge.
156
+ */
157
+ button,
158
+ input {
159
+ /* 1 */
160
+ overflow: visible;
161
+ }
162
+
163
+ /**
164
+ * Remove the inheritance of text transform in Edge, Firefox, and IE.
165
+ * 1. Remove the inheritance of text transform in Firefox.
166
+ */
167
+ button,
168
+ select {
169
+ /* 1 */
170
+ text-transform: none;
171
+ }
172
+
173
+ /**
174
+ * Correct the inability to style clickable types in iOS and Safari.
175
+ */
176
+ button,
177
+ [type=button],
178
+ [type=reset],
179
+ [type=submit] {
180
+ -webkit-appearance: button;
181
+ }
182
+
183
+ /**
184
+ * Remove the inner border and padding in Firefox.
185
+ */
186
+ button::-moz-focus-inner,
187
+ [type=button]::-moz-focus-inner,
188
+ [type=reset]::-moz-focus-inner,
189
+ [type=submit]::-moz-focus-inner {
190
+ border-style: none;
191
+ padding: 0;
192
+ }
193
+
194
+ /**
195
+ * Restore the focus styles unset by the previous rule.
196
+ */
197
+ button:-moz-focusring,
198
+ [type=button]:-moz-focusring,
199
+ [type=reset]:-moz-focusring,
200
+ [type=submit]:-moz-focusring {
201
+ outline: 1px dotted ButtonText;
202
+ }
203
+
204
+ /**
205
+ * Correct the padding in Firefox.
206
+ */
207
+ fieldset {
208
+ padding: 0.35em 0.75em 0.625em;
209
+ }
210
+
211
+ /**
212
+ * 1. Correct the text wrapping in Edge and IE.
213
+ * 2. Correct the color inheritance from `fieldset` elements in IE.
214
+ * 3. Remove the padding so developers are not caught out when they zero out
215
+ * `fieldset` elements in all browsers.
216
+ */
217
+ legend {
218
+ box-sizing: border-box; /* 1 */
219
+ color: inherit; /* 2 */
220
+ display: table; /* 1 */
221
+ max-width: 100%; /* 1 */
222
+ padding: 0; /* 3 */
223
+ white-space: normal; /* 1 */
224
+ }
225
+
226
+ /**
227
+ * Add the correct vertical alignment in Chrome, Firefox, and Opera.
228
+ */
229
+ progress {
230
+ vertical-align: baseline;
231
+ }
232
+
233
+ /**
234
+ * Remove the default vertical scrollbar in IE 10+.
235
+ */
236
+ textarea {
237
+ overflow: auto;
238
+ }
239
+
240
+ /**
241
+ * 1. Add the correct box sizing in IE 10.
242
+ * 2. Remove the padding in IE 10.
243
+ */
244
+ [type=checkbox],
245
+ [type=radio] {
246
+ box-sizing: border-box; /* 1 */
247
+ padding: 0; /* 2 */
248
+ }
249
+
250
+ /**
251
+ * Correct the cursor style of increment and decrement buttons in Chrome.
252
+ */
253
+ [type=number]::-webkit-inner-spin-button,
254
+ [type=number]::-webkit-outer-spin-button {
255
+ height: auto;
256
+ }
257
+
258
+ /**
259
+ * 1. Correct the odd appearance in Chrome and Safari.
260
+ * 2. Correct the outline style in Safari.
261
+ */
262
+ [type=search] {
263
+ -webkit-appearance: textfield; /* 1 */
264
+ outline-offset: -2px; /* 2 */
265
+ }
266
+
267
+ /**
268
+ * Remove the inner padding in Chrome and Safari on macOS.
269
+ */
270
+ [type=search]::-webkit-search-decoration {
271
+ -webkit-appearance: none;
272
+ }
273
+
274
+ /**
275
+ * 1. Correct the inability to style clickable types in iOS and Safari.
276
+ * 2. Change font properties to `inherit` in Safari.
277
+ */
278
+ ::-webkit-file-upload-button {
279
+ -webkit-appearance: button; /* 1 */
280
+ font: inherit; /* 2 */
281
+ }
282
+
283
+ /* Interactive
284
+ ========================================================================== */
285
+ /*
286
+ * Add the correct display in Edge, IE 10+, and Firefox.
287
+ */
288
+ details {
289
+ display: block;
290
+ }
291
+
292
+ /*
293
+ * Add the correct display in all browsers.
294
+ */
295
+ summary {
296
+ display: list-item;
297
+ }
298
+
299
+ /* Misc
300
+ ========================================================================== */
301
+ /**
302
+ * Add the correct display in IE 10+.
303
+ */
304
+ template {
305
+ display: none;
306
+ }
307
+
308
+ /**
309
+ * Add the correct display in IE 10.
310
+ */
311
+ [hidden] {
312
+ display: none;
313
+ }
314
+
315
+ /**
316
+ * Do not edit directly, this file was auto-generated.
317
+ */
318
+ :root {
319
+ --seed-palette-color-base-100: #ffffff;
320
+ --seed-palette-color-base-200: #f6f7f9;
321
+ --seed-palette-color-base-300: #edf0f3;
322
+ --seed-palette-color-base-400: #e0e5ea;
323
+ --seed-palette-color-base-500: #c6ccd1;
324
+ --seed-palette-color-base-600: #a6abaf;
325
+ --seed-palette-color-base-700: #7b8287;
326
+ --seed-palette-color-base-800: #494f54;
327
+ --seed-palette-color-base-900: #25292c;
328
+ --seed-palette-color-base-1000: #191b1c;
329
+ --seed-palette-color-blue-100: #f0f9ff;
330
+ --seed-palette-color-blue-200: #e0f2fe;
331
+ --seed-palette-color-blue-300: #bae6fd;
332
+ --seed-palette-color-blue-400: #7dd3fc;
333
+ --seed-palette-color-blue-500: #38bdf8;
334
+ --seed-palette-color-blue-600: #0ea5e9;
335
+ --seed-palette-color-blue-700: #0284c7;
336
+ --seed-palette-color-blue-800: #0369a1;
337
+ --seed-palette-color-blue-900: #075985;
338
+ --seed-palette-color-blue-1000: #0c4a6e;
339
+ --seed-palette-color-purple-100: #f9fafe;
340
+ --seed-palette-color-purple-200: #ecedfc;
341
+ --seed-palette-color-purple-300: #d0d2f7;
342
+ --seed-palette-color-purple-400: #b5b8f2;
343
+ --seed-palette-color-purple-500: #9a9eec;
344
+ --seed-palette-color-purple-600: #7a82e4;
345
+ --seed-palette-color-purple-700: #6167c9;
346
+ --seed-palette-color-purple-800: #5756a6;
347
+ --seed-palette-color-purple-900: #494582;
348
+ --seed-palette-color-purple-1000: #38325d;
349
+ --seed-palette-color-red-100: #fef2f2;
350
+ --seed-palette-color-red-200: #fee2e2;
351
+ --seed-palette-color-red-300: #fecaca;
352
+ --seed-palette-color-red-400: #fca5a5;
353
+ --seed-palette-color-red-500: #f87171;
354
+ --seed-palette-color-red-600: #ef4444;
355
+ --seed-palette-color-red-700: #dc2626;
356
+ --seed-palette-color-red-800: #b91c1c;
357
+ --seed-palette-color-red-900: #991b1b;
358
+ --seed-palette-color-red-1000: #7f1d1d;
359
+ --seed-palette-color-orange-100: #fff7ed;
360
+ --seed-palette-color-orange-200: #ffedd5;
361
+ --seed-palette-color-orange-300: #fed7aa;
362
+ --seed-palette-color-orange-400: #fdba74;
363
+ --seed-palette-color-orange-500: #fb923c;
364
+ --seed-palette-color-orange-600: #f97316;
365
+ --seed-palette-color-orange-700: #ea580c;
366
+ --seed-palette-color-orange-800: #c2410c;
367
+ --seed-palette-color-orange-900: #9a3412;
368
+ --seed-palette-color-orange-1000: #7c2d12;
369
+ --seed-palette-color-yellow-100: #fefce8;
370
+ --seed-palette-color-yellow-200: #fef9c3;
371
+ --seed-palette-color-yellow-300: #fef08a;
372
+ --seed-palette-color-yellow-400: #fde047;
373
+ --seed-palette-color-yellow-500: #facc15;
374
+ --seed-palette-color-yellow-600: #eab308;
375
+ --seed-palette-color-yellow-700: #ca8a04;
376
+ --seed-palette-color-yellow-800: #a16207;
377
+ --seed-palette-color-yellow-900: #854d0e;
378
+ --seed-palette-color-yellow-1000: #713f12;
379
+ --seed-palette-color-green-100: #e9ffe9;
380
+ --seed-palette-color-green-200: #d5ffd5;
381
+ --seed-palette-color-green-300: #bdffbd;
382
+ --seed-palette-color-green-400: #89ee89;
383
+ --seed-palette-color-green-500: #60e060;
384
+ --seed-palette-color-green-600: #50bf50;
385
+ --seed-palette-color-green-700: #2fa32f;
386
+ --seed-palette-color-green-800: #1e861e;
387
+ --seed-palette-color-green-900: #156015;
388
+ --seed-palette-color-green-1000: #063f06;
389
+ --seed-ui-color-text-white: #ffffff;
390
+ --seed-ui-color-text-disabled: #c6ccd1;
391
+ --seed-ui-color-text-lite: #a6abaf;
392
+ --seed-ui-color-text-dark: #494f54;
393
+ --seed-ui-color-text-black: #191b1c;
394
+ --seed-ui-color-background-white: #ffffff;
395
+ --seed-ui-color-background-container: #ffffff;
396
+ --seed-ui-color-background-gray: #f6f7f9;
397
+ --seed-ui-color-background-chips: #f6f7f9;
398
+ --seed-ui-color-background-placeholder: #e0e5ea;
399
+ --seed-ui-color-background-guide: #e0e5ea;
400
+ --seed-ui-color-background-focus: #191b1c;
401
+ --seed-ui-color-icon-white: #ffffff;
402
+ --seed-ui-color-icon-lite: #a6abaf;
403
+ --seed-ui-color-icon-dark: #494f54;
404
+ --seed-ui-color-icon-black: #191b1c;
405
+ --seed-ui-color-line-white: #ffffff;
406
+ --seed-ui-color-line-lite: #edf0f3;
407
+ --seed-ui-color-line-medium: #c6ccd1;
408
+ --seed-ui-color-line-dark: #494f54;
409
+ --seed-ui-color-line-focus: #25292c;
410
+ --seed-ui-color-toast-complete: #50bf50;
411
+ --seed-ui-color-toast-error: #ef4444;
412
+ --seed-ui-color-toast-caution: #fef08a;
413
+ --seed-ui-color-misc-black-70: rgba(0, 0, 0, 0.7);
414
+ --seed-ui-color-misc-black-40: rgba(0, 0, 0, 0.4);
415
+ --seed-brand-color-primary: #50bf50;
416
+ --seed-brand-color-secondary1: #bdffbd;
417
+ --seed-brand-color-secondary2: #e9ffe9;
418
+ --seed-brand-color-point1: #ef4444;
419
+ --seed-brand-color-point2: #f87171;
420
+ --seed-brand-color-point3: #fb923c;
421
+ --seed-brand-color-point4: #fef08a;
422
+ }
423
+
424
+ /**
425
+ * Do not edit directly, this file was auto-generated.
426
+ */
427
+ :root {
428
+ --seed-palette-color-base-100: #ffffff;
429
+ --seed-palette-color-base-200: #f6f7f9;
430
+ --seed-palette-color-base-300: #edf0f3;
431
+ --seed-palette-color-base-400: #e0e5ea;
432
+ --seed-palette-color-base-500: #c6ccd1;
433
+ --seed-palette-color-base-600: #a6abaf;
434
+ --seed-palette-color-base-700: #7b8287;
435
+ --seed-palette-color-base-800: #494f54;
436
+ --seed-palette-color-base-900: #25292c;
437
+ --seed-palette-color-base-1000: #191b1c;
438
+ --seed-palette-color-blue-100: #f0f9ff;
439
+ --seed-palette-color-blue-200: #e0f2fe;
440
+ --seed-palette-color-blue-300: #bae6fd;
441
+ --seed-palette-color-blue-400: #7dd3fc;
442
+ --seed-palette-color-blue-500: #38bdf8;
443
+ --seed-palette-color-blue-600: #0ea5e9;
444
+ --seed-palette-color-blue-700: #0284c7;
445
+ --seed-palette-color-blue-800: #0369a1;
446
+ --seed-palette-color-blue-900: #075985;
447
+ --seed-palette-color-blue-1000: #0c4a6e;
448
+ --seed-palette-color-purple-100: #f9fafe;
449
+ --seed-palette-color-purple-200: #ecedfc;
450
+ --seed-palette-color-purple-300: #d0d2f7;
451
+ --seed-palette-color-purple-400: #b5b8f2;
452
+ --seed-palette-color-purple-500: #9a9eec;
453
+ --seed-palette-color-purple-600: #7a82e4;
454
+ --seed-palette-color-purple-700: #6167c9;
455
+ --seed-palette-color-purple-800: #5756a6;
456
+ --seed-palette-color-purple-900: #494582;
457
+ --seed-palette-color-purple-1000: #38325d;
458
+ --seed-palette-color-red-100: #fef2f2;
459
+ --seed-palette-color-red-200: #fee2e2;
460
+ --seed-palette-color-red-300: #fecaca;
461
+ --seed-palette-color-red-400: #fca5a5;
462
+ --seed-palette-color-red-500: #f87171;
463
+ --seed-palette-color-red-600: #ef4444;
464
+ --seed-palette-color-red-700: #dc2626;
465
+ --seed-palette-color-red-800: #b91c1c;
466
+ --seed-palette-color-red-900: #991b1b;
467
+ --seed-palette-color-red-1000: #7f1d1d;
468
+ --seed-palette-color-orange-100: #fff7ed;
469
+ --seed-palette-color-orange-200: #ffedd5;
470
+ --seed-palette-color-orange-300: #fed7aa;
471
+ --seed-palette-color-orange-400: #fdba74;
472
+ --seed-palette-color-orange-500: #fb923c;
473
+ --seed-palette-color-orange-600: #f97316;
474
+ --seed-palette-color-orange-700: #ea580c;
475
+ --seed-palette-color-orange-800: #c2410c;
476
+ --seed-palette-color-orange-900: #9a3412;
477
+ --seed-palette-color-orange-1000: #7c2d12;
478
+ --seed-palette-color-yellow-100: #fefce8;
479
+ --seed-palette-color-yellow-200: #fef9c3;
480
+ --seed-palette-color-yellow-300: #fef08a;
481
+ --seed-palette-color-yellow-400: #fde047;
482
+ --seed-palette-color-yellow-500: #facc15;
483
+ --seed-palette-color-yellow-600: #eab308;
484
+ --seed-palette-color-yellow-700: #ca8a04;
485
+ --seed-palette-color-yellow-800: #a16207;
486
+ --seed-palette-color-yellow-900: #854d0e;
487
+ --seed-palette-color-yellow-1000: #713f12;
488
+ --seed-palette-color-green-100: #e9ffe9;
489
+ --seed-palette-color-green-200: #d5ffd5;
490
+ --seed-palette-color-green-300: #bdffbd;
491
+ --seed-palette-color-green-400: #89ee89;
492
+ --seed-palette-color-green-500: #60e060;
493
+ --seed-palette-color-green-600: #50bf50;
494
+ --seed-palette-color-green-700: #2fa32f;
495
+ --seed-palette-color-green-800: #1e861e;
496
+ --seed-palette-color-green-900: #156015;
497
+ --seed-palette-color-green-1000: #063f06;
498
+ --seed-ui-color-text-white: #ffffff;
499
+ --seed-ui-color-text-disabled: #c6ccd1;
500
+ --seed-ui-color-text-lite: #a6abaf;
501
+ --seed-ui-color-text-dark: #494f54;
502
+ --seed-ui-color-text-black: #191b1c;
503
+ --seed-ui-color-background-white: #ffffff;
504
+ --seed-ui-color-background-container: #ffffff;
505
+ --seed-ui-color-background-gray: #f6f7f9;
506
+ --seed-ui-color-background-chips: #f6f7f9;
507
+ --seed-ui-color-background-placeholder: #e0e5ea;
508
+ --seed-ui-color-background-guide: #e0e5ea;
509
+ --seed-ui-color-background-focus: #191b1c;
510
+ --seed-ui-color-icon-white: #ffffff;
511
+ --seed-ui-color-icon-lite: #a6abaf;
512
+ --seed-ui-color-icon-dark: #494f54;
513
+ --seed-ui-color-icon-black: #191b1c;
514
+ --seed-ui-color-line-white: #ffffff;
515
+ --seed-ui-color-line-lite: #edf0f3;
516
+ --seed-ui-color-line-medium: #c6ccd1;
517
+ --seed-ui-color-line-dark: #494f54;
518
+ --seed-ui-color-line-focus: #25292c;
519
+ --seed-ui-color-toast-complete: #50bf50;
520
+ --seed-ui-color-toast-error: #ef4444;
521
+ --seed-ui-color-toast-caution: #fef08a;
522
+ --seed-ui-color-misc-black-70: rgba(0, 0, 0, 0.7);
523
+ --seed-ui-color-misc-black-40: rgba(0, 0, 0, 0.4);
524
+ --seed-brand-color-primary: #50bf50;
525
+ --seed-brand-color-secondary1: #bdffbd;
526
+ --seed-brand-color-secondary2: #e9ffe9;
527
+ --seed-brand-color-point1: #ef4444;
528
+ --seed-brand-color-point2: #f87171;
529
+ --seed-brand-color-point3: #fb923c;
530
+ --seed-brand-color-point4: #fef08a;
531
+ }
532
+
533
+ /**
534
+ * Do not edit directly, this file was auto-generated.
535
+ */
536
+ :root {
537
+ --seed-font-family-head: pretendard;
538
+ --seed-font-family-title: pretendard;
539
+ --seed-font-family-body: pretendard;
540
+ --seed-font-family-paragraph: pretendard;
541
+ --seed-font-family-caption: pretendard;
542
+ --seed-font-weight-400: regular;
543
+ --seed-font-weight-500: medium;
544
+ --seed-font-weight-700: bold;
545
+ --seed-font-size-xs: 12px;
546
+ --seed-font-size-s: 14px;
547
+ --seed-font-size-sm: 16px;
548
+ --seed-font-size-md: 18px;
549
+ --seed-font-size-lg: 20px;
550
+ --seed-font-size-xl: 22px;
551
+ --seed-font-size-2xl: 24px;
552
+ --seed-font-size-4xl: 32px;
553
+ --seed-font-size-5xl: 40px;
554
+ --seed-font-size-6xl: 48px;
555
+ --seed-font-size-3xl: 28px;
556
+ --seed-font-line-height-sm: 16px;
557
+ --seed-font-line-height-2xl: 24px;
558
+ --seed-font-line-height-4xl: 32px;
559
+ --seed-font-line-height-5xl: 40px;
560
+ --seed-font-line-height-6xl: 48px;
561
+ --seed-font-line-height-lg: 20px;
562
+ --seed-font-line-height-3xl: 28px;
563
+ --seed-font-line-height-s: 14px;
564
+ --seed-spacing-100: 0px;
565
+ --seed-spacing-200: 4px;
566
+ --seed-spacing-300: 8px;
567
+ --seed-spacing-400: 12px;
568
+ --seed-spacing-500: 16px;
569
+ --seed-spacing-600: 20px;
570
+ --seed-spacing-700: 24px;
571
+ --seed-spacing-800: 28px;
572
+ --seed-spacing-900: 32px;
573
+ --seed-spacing-1000: 40px;
574
+ --seed-spacing-1100: 48px;
575
+ --seed-spacing-1200: 56px;
576
+ --seed-spacing-1300: 64px;
577
+ --seed-spacing-1400: 72px;
578
+ --seed-rounding-100: 0px;
579
+ --seed-rounding-200: 4px;
580
+ --seed-rounding-300: 8px;
581
+ --seed-rounding-400: 12px;
582
+ --seed-rounding-500: 16px;
583
+ --seed-rounding-600: 20px;
584
+ --seed-rounding-700: 24px;
585
+ --seed-rounding-800: 28px;
586
+ --seed-rounding-900: 32px;
587
+ --seed-rounding-1000: 40px;
588
+ --seed-rounding-1100: 48px;
589
+ --seed-rounding-1200: 56px;
590
+ --seed-rounding-1300: 64px;
591
+ --seed-rounding-1400: 72px;
592
+ }
593
+
594
+ /**
595
+ * Do not edit directly, this file was auto-generated.
596
+ */
597
+ :root {
598
+ --seed-font-family-head: pretendard;
599
+ --seed-font-family-title: pretendard;
600
+ --seed-font-family-body: pretendard;
601
+ --seed-font-family-paragraph: pretendard;
602
+ --seed-font-family-caption: pretendard;
603
+ --seed-font-weight-400: regular;
604
+ --seed-font-weight-500: medium;
605
+ --seed-font-weight-700: bold;
606
+ --seed-font-size-xs: 12px;
607
+ --seed-font-size-s: 14px;
608
+ --seed-font-size-sm: 16px;
609
+ --seed-font-size-md: 18px;
610
+ --seed-font-size-lg: 20px;
611
+ --seed-font-size-xl: 22px;
612
+ --seed-font-size-2xl: 24px;
613
+ --seed-font-size-4xl: 32px;
614
+ --seed-font-size-5xl: 40px;
615
+ --seed-font-size-6xl: 48px;
616
+ --seed-font-size-3xl: 28px;
617
+ --seed-font-line-height-sm: 16px;
618
+ --seed-font-line-height-2xl: 24px;
619
+ --seed-font-line-height-4xl: 32px;
620
+ --seed-font-line-height-5xl: 40px;
621
+ --seed-font-line-height-6xl: 48px;
622
+ --seed-font-line-height-lg: 20px;
623
+ --seed-font-line-height-3xl: 28px;
624
+ --seed-font-line-height-s: 14px;
625
+ --seed-spacing-100: 0px;
626
+ --seed-spacing-200: 4px;
627
+ --seed-spacing-300: 8px;
628
+ --seed-spacing-400: 12px;
629
+ --seed-spacing-500: 16px;
630
+ --seed-spacing-600: 20px;
631
+ --seed-spacing-700: 24px;
632
+ --seed-spacing-800: 28px;
633
+ --seed-spacing-900: 32px;
634
+ --seed-spacing-1000: 40px;
635
+ --seed-spacing-1100: 48px;
636
+ --seed-spacing-1200: 56px;
637
+ --seed-spacing-1300: 64px;
638
+ --seed-spacing-1400: 72px;
639
+ --seed-rounding-100: 0px;
640
+ --seed-rounding-200: 4px;
641
+ --seed-rounding-300: 8px;
642
+ --seed-rounding-400: 12px;
643
+ --seed-rounding-500: 16px;
644
+ --seed-rounding-600: 20px;
645
+ --seed-rounding-700: 24px;
646
+ --seed-rounding-800: 28px;
647
+ --seed-rounding-900: 32px;
648
+ --seed-rounding-1000: 40px;
649
+ --seed-rounding-1100: 48px;
650
+ --seed-rounding-1200: 56px;
651
+ --seed-rounding-1300: 64px;
652
+ --seed-rounding-1400: 72px;
653
+ }
654
+
655
+ .box {
656
+ box-sizing: border-box;
657
+ }
658
+
659
+ :root {
660
+ --button-loading-dot-delay: 0.2s;
661
+ --button-loading-dot-duration: 1.4s;
662
+ }
663
+
664
+ .button {
665
+ box-sizing: border-box;
666
+ position: relative;
667
+ cursor: pointer;
668
+ border: none;
669
+ font-weight: 500;
670
+ transition: all 0.2s ease-in-out;
671
+ border-radius: var(--seed-spacing-300);
672
+ }
673
+ .button:disabled {
674
+ cursor: not-allowed;
675
+ }
676
+ .button.button--loading {
677
+ cursor: wait;
678
+ }
679
+
680
+ .button--size-lg {
681
+ padding: var(--seed-spacing-500) var(--seed-spacing-700);
682
+ gap: var(--seed-spacing-300);
683
+ font-size: 16px;
684
+ height: 52px;
685
+ }
686
+ .button--size-lg > .button--content span {
687
+ height: 20px;
688
+ }
689
+
690
+ .button--size-md {
691
+ padding: var(--seed-spacing-300) var(--seed-spacing-400);
692
+ gap: var(--seed-spacing-300);
693
+ font-size: 14px;
694
+ height: 48px;
695
+ }
696
+ .button--size-md > .button--content span {
697
+ height: 20px;
698
+ }
699
+
700
+ .button--type-solid-green {
701
+ background-color: var(--seed-brand-color-primary);
702
+ color: var(--seed-ui-color-line-white);
703
+ }
704
+ .button--type-solid-green:hover:not(:disabled) {
705
+ background-color: var(--seed-palette-color-green-700);
706
+ }
707
+ .button--type-solid-green:active:not(:disabled) {
708
+ background-color: var(--seed-palette-color-green-700);
709
+ }
710
+ .button--type-solid-green.disabled {
711
+ background-color: var(--seed-ui-color-background-guide);
712
+ border-color: var(--seed-ui-color-background-guide);
713
+ color: var(--seed-ui-color-text-disabled);
714
+ }
715
+
716
+ .button--type-solid-red {
717
+ background-color: var(--seed-brand-color-point2);
718
+ color: var(--seed-ui-color-line-white);
719
+ }
720
+ .button--type-solid-red:hover:not(:disabled) {
721
+ background-color: var(--seed-palette-color-red-600);
722
+ }
723
+ .button--type-solid-red:active:not(:disabled) {
724
+ background-color: var(--seed-palette-color-red-600);
725
+ }
726
+ .button--type-solid-red.disabled {
727
+ background-color: var(--seed-ui-color-background-guide);
728
+ border-color: var(--seed-ui-color-background-guide);
729
+ color: var(--seed-ui-color-text-disabled);
730
+ }
731
+
732
+ .button--type-outline-green {
733
+ background-color: var(--seed-ui-color-background-container);
734
+ border: 1px solid var(--seed-brand-color-primary);
735
+ color: var(--seed-brand-color-primary);
736
+ }
737
+ .button--type-outline-green:hover:not(:disabled) {
738
+ background-color: var(--seed-brand-color-secondary2);
739
+ }
740
+ .button--type-outline-green:active:not(:disabled) {
741
+ background-color: var(--seed-brand-color-secondary2);
742
+ }
743
+ .button--type-outline-green.disabled {
744
+ background-color: var(--seed-ui-color-background-white);
745
+ border-color: var(---seed-ui-color-line-lite);
746
+ color: var(--seed-ui-color-text-disabled);
747
+ }
748
+
749
+ .button--type-outline-gray {
750
+ background-color: var(--seed-ui-color-background-white);
751
+ border: 1px solid var(--seed-ui-color-line-dark);
752
+ color: var(--seed-ui-color-text-black);
753
+ }
754
+ .button--type-outline-gray:hover:not(:disabled) {
755
+ background-color: var(--seed-ui-color-background-gray);
756
+ }
757
+ .button--type-outline-gray:active:not(:disabled) {
758
+ background-color: var(--seed-ui-color-background-gray);
759
+ }
760
+ .button--type-outline-gray.disabled {
761
+ background-color: var(--seed-ui-color-background-white);
762
+ border-color: var(---seed-ui-color-line-lite);
763
+ color: var(--seed-ui-color-text-disabled);
764
+ }
765
+
766
+ .button--type-text-none {
767
+ background-color: transparent;
768
+ color: var(--seed-ui-color-text-black);
769
+ }
770
+ .button--type-text-none:hover:not(:disabled) {
771
+ color: var(--seed-ui-color-text-lite);
772
+ }
773
+ .button--type-text-none:active:not(:disabled) {
774
+ color: var(--seed-ui-color-text-lite);
775
+ }
776
+ .button--type-text-none.disabled {
777
+ color: var(--seed-ui-color-text-disabled);
778
+ }
779
+
780
+ .button--display-inline {
781
+ display: inline-flex;
782
+ }
783
+
784
+ .button--display-block {
785
+ display: flex;
786
+ }
787
+
788
+ .button--display-full {
789
+ display: flex;
790
+ width: 100%;
791
+ }
792
+
793
+ .button--content {
794
+ opacity: 1;
795
+ transition: opacity 0.2s;
796
+ display: flex;
797
+ width: 100%;
798
+ justify-content: center;
799
+ align-items: center;
800
+ flex-direction: row;
801
+ }
802
+ .button--content.button--content--hidden {
803
+ opacity: 0;
804
+ }
805
+
806
+ .button--loading {
807
+ position: absolute;
808
+ top: 50%;
809
+ left: 50%;
810
+ transform: translate(-50%, -50%);
811
+ display: flex;
812
+ align-items: center;
813
+ justify-content: center;
814
+ gap: 12px;
815
+ }
816
+
817
+ .button--loading-dot {
818
+ animation: loadingDot var(--button-loading-dot-duration) infinite;
819
+ opacity: 0;
820
+ width: 8px;
821
+ height: 8px;
822
+ border-radius: 50%;
823
+ background-color: currentColor;
824
+ }
825
+ .button--loading-dot:nth-child(2) {
826
+ animation-delay: var(--button-loading-dot-delay);
827
+ }
828
+ .button--loading-dot:nth-child(3) {
829
+ animation-delay: calc(var(--button-loading-dot-delay) * 2);
830
+ }
831
+
832
+ @keyframes loadingDot {
833
+ 0%, 20% {
834
+ opacity: 0;
835
+ transform: translateY(0);
836
+ }
837
+ 50% {
838
+ opacity: 1;
839
+ transform: translateY(-2px);
840
+ }
841
+ 80%, 100% {
842
+ opacity: 0;
843
+ transform: translateY(0);
844
+ }
845
+ }
846
+ :root {
847
+ --font-weight-regular: 400;
848
+ --font-weight-medium: 500;
849
+ --font-weight-bold: 700;
850
+ --font-size-heading: 24px;
851
+ --font-size-body: 16px;
852
+ --font-size-text: 14px;
853
+ --line-height-default: 1.4;
854
+ --font-display-block: block;
855
+ --font-display-inline-block: inline-block;
856
+ --font-display-inline: inline;
857
+ --font-display-flex: flex;
858
+ --font-display-inline-flex: inline-flex;
859
+ --font-display-none: none;
860
+ }
861
+
862
+ .text {
863
+ box-sizing: border-box;
864
+ }
865
+
866
+ .text--font-weight-regular {
867
+ font-weight: var(--font-weight-regular);
868
+ }
869
+
870
+ .text--font-weight-medium {
871
+ font-weight: var(--font-weight-medium);
872
+ }
873
+
874
+ .text--font-weight-bold {
875
+ font-weight: var(--font-weight-bold);
876
+ }
877
+
878
+ .text--typography-heading {
879
+ font-size: var(--font-size-heading);
880
+ line-height: var(--line-height-default);
881
+ }
882
+
883
+ .text--typography-body {
884
+ font-size: var(--font-size-body);
885
+ line-height: var(--line-height-default);
886
+ }
887
+
888
+ .text--typography-text {
889
+ font-size: var(--font-size-text);
890
+ line-height: var(--line-height-default);
891
+ }
892
+
893
+ .text--single-line {
894
+ text-overflow: ellipsis;
895
+ overflow: hidden;
896
+ white-space: nowrap;
897
+ }
898
+
899
+ .text--multi-line {
900
+ display: -webkit-box;
901
+ -webkit-box-orient: vertical;
902
+ overflow: hidden;
903
+ }
904
+
905
+ .text--display-block {
906
+ display: var(--font-display-block);
907
+ }
908
+
909
+ .text--display-inline-block {
910
+ display: var(--font-display-inline-block);
911
+ }
912
+
913
+ .text--display-inline {
914
+ display: var(--font-display-inline);
915
+ }
916
+
917
+ .text--display-flex {
918
+ display: var(--font-display-flex);
919
+ }
920
+
921
+ .text--display-inline-flex {
922
+ display: var(--font-display-inline-flex);
923
+ }
924
+
925
+ .text--display-none {
926
+ display: var(--font-display-none);
927
+ }
928
+
929
+ :root {
930
+ /* Color tokens */
931
+ --seed-palette-color-base-100: #ffffff;
932
+ --seed-palette-color-base-800: #494f54;
933
+ /* Radius tokens */
934
+ --seed-spacing-100: 0px;
935
+ --seed-spacing-300: 8px;
936
+ --seed-spacing-600: 20px;
937
+ --seed-spacing-900: 32px;
938
+ }
939
+
940
+ /** Default Style */
941
+ .overlay {
942
+ position: fixed;
943
+ inset: 0;
944
+ background-color: rgba(0, 0, 0, 0.4);
945
+ }
946
+
947
+ .drawer-content {
948
+ position: fixed;
949
+ bottom: 0;
950
+ left: 0;
951
+ right: 0;
952
+ height: fit-content;
953
+ background-color: #fff;
954
+ outline: none;
955
+ max-height: calc(100dvh - 32px);
956
+ border-bottom-left-radius: 0 !important;
957
+ border-bottom-right-radius: 0 !important;
958
+ overflow-y: hidden;
959
+ }
960
+
961
+ .drawer-content-inner {
962
+ max-height: calc(100dvh - 68px); /* 핸들 높이(36px)를 고려하여 조정 */
963
+ overflow-y: auto; /* 스크롤 추가 */
964
+ -webkit-overflow-scrolling: touch; /* iOS에서 부드러운 스크롤 */
965
+ }
966
+
967
+ /** Tokens Style */
968
+ .bottomsheet-container--radius-none {
969
+ border-top: var(--seed-spacing-100);
970
+ }
971
+
972
+ .bottomsheet-container--radius-small {
973
+ border-radius: var(--seed-spacing-300);
974
+ }
975
+
976
+ .bottomsheet-container--radius-medium {
977
+ border-radius: var(--seed-spacing-700);
978
+ }
979
+
980
+ .bottomsheet-container--radius-large {
981
+ border-radius: var(--seed-spacing-900);
982
+ }
983
+
984
+ .bottomsheet-container--theme-light {
985
+ background-color: var(--seed-palette-color-base-100);
986
+ }
987
+
988
+ .bottomsheet-container--theme-dark {
989
+ background-color: var(--seed-palette-color-base-800);
990
+ }
991
+
992
+ .drawer-handle {
993
+ height: 36px;
994
+ width: 100%;
995
+ }
996
+
997
+ :root {
998
+ /* Color tokens */
999
+ --seed-palette-color-base-100: #ffffff;
1000
+ --seed-palette-color-base-900: #25292c;
1001
+ /* Radius tokens */
1002
+ --seed-spacing-100: 0px;
1003
+ --seed-spacing-300: 8px;
1004
+ --seed-spacing-600: 20px;
1005
+ --seed-spacing-900: 32px;
1006
+ }
1007
+
1008
+ /** Default Style */
1009
+ .overlay {
1010
+ position: fixed;
1011
+ inset: 0;
1012
+ background-color: rgba(0, 0, 0, 0.4);
1013
+ /** to-do animation duration, timing function tokenization */
1014
+ animation: overlayShow 250ms cubic-bezier(0.3, 0, 0, 1);
1015
+ }
1016
+
1017
+ .dialog-content {
1018
+ background-color: white;
1019
+ border-radius: 6px;
1020
+ box-shadow: hsla(206, 22%, 7%, 0.35) 0px 10px 38px -10px, hsla(206, 22%, 7%, 0.2) 0px 10px 20px -15px;
1021
+ position: fixed;
1022
+ top: 50%;
1023
+ left: 50%;
1024
+ transform: translate(-50%, -50%);
1025
+ width: 90vw;
1026
+ max-width: 450px;
1027
+ max-height: 85vh;
1028
+ padding: 25px;
1029
+ animation: contentShow 300ms cubic-bezier(0.3, 0, 0, 1);
1030
+ }
1031
+
1032
+ .dialog-handle {
1033
+ margin-top: 10px;
1034
+ width: 45px;
1035
+ }
1036
+
1037
+ /** Default Animation */
1038
+ @keyframes overlayShow {
1039
+ from {
1040
+ opacity: 0;
1041
+ }
1042
+ to {
1043
+ opacity: 1;
1044
+ }
1045
+ }
1046
+ @keyframes contentShow {
1047
+ from {
1048
+ opacity: 0;
1049
+ transform: translate(-50%, -48%) scale(0.96);
1050
+ }
1051
+ to {
1052
+ opacity: 1;
1053
+ transform: translate(-50%, -50%) scale(1);
1054
+ }
1055
+ }
1056
+ /** Tokens Style */
1057
+ .dialog-content--theme-light {
1058
+ background-color: var(--seed-palette-color-base-100);
1059
+ }
1060
+
1061
+ .dialog-content--theme-dark {
1062
+ background-color: var(--seed-palette-color-base-900);
1063
+ }
1064
+
1065
+ .dialog-content--radius-none {
1066
+ border-radius: var(--seed-spacing-100);
1067
+ }
1068
+
1069
+ .dialog-content--radius-small {
1070
+ border-radius: var(--seed-spacing-300);
1071
+ }
1072
+
1073
+ .dialog-content--radius-medium {
1074
+ border-radius: var(--seed-spacing-600);
1075
+ }
1076
+
1077
+ .dialog-content--radius-large {
1078
+ border-radius: var(--seed-spacing-900);
1079
+ }
1080
+
1081
+ /** Default Style */
1082
+ @keyframes toast-enter-top {
1083
+ 0% {
1084
+ transform: translate3d(0, -200%, 0) scale(0.6);
1085
+ opacity: 0.5;
1086
+ }
1087
+ 100% {
1088
+ transform: translate3d(0, 0, 0) scale(1);
1089
+ opacity: 1;
1090
+ }
1091
+ }
1092
+ @keyframes toast-exit-top {
1093
+ 0% {
1094
+ transform: translate3d(0, 0, -1px) scale(1);
1095
+ opacity: 1;
1096
+ }
1097
+ 100% {
1098
+ transform: translate3d(0, -150%, -1px) scale(0.6);
1099
+ opacity: 0;
1100
+ }
1101
+ }
1102
+ @keyframes toast-fade-in {
1103
+ 0% {
1104
+ opacity: 0;
1105
+ }
1106
+ 100% {
1107
+ opacity: 1;
1108
+ }
1109
+ }
1110
+ @keyframes toast-fade-out {
1111
+ 0% {
1112
+ opacity: 1;
1113
+ }
1114
+ 100% {
1115
+ opacity: 0;
1116
+ }
1117
+ }
1118
+ @keyframes toast-enter-bottom {
1119
+ 0% {
1120
+ transform: translate3d(0, 200%, 0) scale(0.6);
1121
+ opacity: 0.5;
1122
+ }
1123
+ 100% {
1124
+ transform: translate3d(0, 0, 0) scale(1);
1125
+ opacity: 1;
1126
+ }
1127
+ }
1128
+ @keyframes toast-exit-bottom {
1129
+ 0% {
1130
+ transform: translate3d(0, 0, -1px) scale(1);
1131
+ opacity: 1;
1132
+ }
1133
+ 100% {
1134
+ transform: translate3d(0, 150%, -1px) scale(0.6);
1135
+ opacity: 0;
1136
+ }
1137
+ }
1138
+ @keyframes toast-fade-in {
1139
+ 0% {
1140
+ opacity: 0;
1141
+ }
1142
+ 100% {
1143
+ opacity: 1;
1144
+ }
1145
+ }
1146
+ @keyframes toast-fade-out {
1147
+ 0% {
1148
+ opacity: 1;
1149
+ }
1150
+ 100% {
1151
+ opacity: 0;
1152
+ }
1153
+ }
1154
+ .toast--content {
1155
+ opacity: 0;
1156
+ display: flex;
1157
+ position: relative;
1158
+ display: flex;
1159
+ box-sizing: border-box;
1160
+ align-items: center;
1161
+ justify-content: space-between;
1162
+ gap: var(--seed-spacing-600);
1163
+ border-radius: var(--seed-rounding-300);
1164
+ min-height: 56px;
1165
+ padding: var(--seed-spacing-500);
1166
+ background: var(--seed-ui-color-misc-black-70);
1167
+ color: #363636;
1168
+ box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1), 0 3px 3px rgba(0, 0, 0, 0.05);
1169
+ pointer-events: auto;
1170
+ will-change: transform;
1171
+ transition: transform 0.23s cubic-bezier(0.21, 1.02, 0.73, 1);
1172
+ }
1173
+ .toast--content.top.visible {
1174
+ animation: toast-enter-top 0.35s cubic-bezier(0.21, 1.02, 0.73, 1) forwards;
1175
+ }
1176
+ .toast--content.top.hidden {
1177
+ animation: toast-exit-top 0.4s cubic-bezier(0.06, 0.71, 0.55, 1) forwards;
1178
+ }
1179
+ .toast--content.bottom.visible {
1180
+ animation: toast-enter-bottom 0.35s cubic-bezier(0.21, 1.02, 0.73, 1) forwards;
1181
+ }
1182
+ .toast--content.bottom.hidden {
1183
+ animation: toast-exit-bottom 0.4s cubic-bezier(0.06, 0.71, 0.55, 1) forwards;
1184
+ }
1185
+ @media (prefers-reduced-motion: reduce) {
1186
+ .toast--content.visible {
1187
+ animation: toast-fade-in 0.35s ease-in forwards;
1188
+ }
1189
+ .toast--content.hidden {
1190
+ animation: toast-fade-out 0.4s ease-out forwards;
1191
+ }
1192
+ }
1193
+
1194
+ .toast--type-message {
1195
+ display: flex;
1196
+ align-items: center;
1197
+ gap: var(--seed-spacing-300);
1198
+ }
1199
+
1200
+ .toast--type-icon {
1201
+ display: flex;
1202
+ align-items: center;
1203
+ }
1204
+ .toast--type-icon[data-toast-type=default] {
1205
+ display: none;
1206
+ }
1207
+
1208
+ .toast--message {
1209
+ font-size: var(--seed-font-size-s);
1210
+ font-weight: var(--seed-font-weight-400);
1211
+ color: var(--seed-ui-color-text-white);
1212
+ line-height: var(--seed-font-line-height-sm);
1213
+ }
1214
+
1215
+ .toast--action-link {
1216
+ flex-shrink: 0;
1217
+ font-size: var(--seed-font-size-xs);
1218
+ font-weight: var(--seed-font-weight-400);
1219
+ color: var(--seed-ui-color-text-white);
1220
+ text-decoration: underline;
1221
+ text-underline-offset: 2px;
1222
+ cursor: pointer;
1223
+ }
1224
+
1225
+ .toast--action-button {
1226
+ display: flex;
1227
+ flex-shrink: 0;
1228
+ align-items: center;
1229
+ justify-content: center;
1230
+ padding: var(--seed-spacing-200) var(--seed-spacing-300);
1231
+ background-color: var(--seed-brand-color-primary);
1232
+ border-radius: var(--seed-rounding-400);
1233
+ font-size: var(--seed-font-size-xs);
1234
+ font-weight: var(--seed-font-weight-400);
1235
+ color: var(--seed-ui-color-text-white);
1236
+ cursor: pointer;
1237
+ }
1238
+
1239
+ .toaster-content {
1240
+ position: fixed;
1241
+ z-index: 9999;
1242
+ top: 0;
1243
+ left: 0;
1244
+ right: 0;
1245
+ bottom: 0;
1246
+ pointer-events: none;
1247
+ }
1248
+
1249
+ .toast-wrapper {
1250
+ position: absolute;
1251
+ }
1252
+ .toast-wrapper > * {
1253
+ transition: all 0.23s cubic-bezier(0.21, 1.02, 0.73, 1);
1254
+ }
1255
+ .toast-wrapper.toast-wrapper--top-right {
1256
+ right: 0;
1257
+ }
1258
+ .toast-wrapper.toast-wrapper--top-left {
1259
+ left: 0;
1260
+ }
1261
+ .toast-wrapper.toast-wrapper--top-center {
1262
+ left: 50%;
1263
+ }
1264
+ .toast-wrapper.toast-wrapper--bottom-right {
1265
+ bottom: 0;
1266
+ right: 0;
1267
+ }
1268
+ .toast-wrapper.toast-wrapper--bottom-left {
1269
+ bottom: 0;
1270
+ left: 0;
1271
+ }
1272
+ .toast-wrapper.toast-wrapper--bottom-center {
1273
+ bottom: 0;
1274
+ left: 50%;
1275
+ }
1276
+
1277
+ .popover-content {
1278
+ border-radius: 4px;
1279
+ padding: 20px;
1280
+ width: 260px;
1281
+ background-color: white;
1282
+ box-shadow: hsla(206, 22%, 7%, 0.35) 0px 10px 38px -10px, hsla(206, 22%, 7%, 0.2) 0px 10px 20px -15px;
1283
+ animation-duration: 400ms;
1284
+ animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
1285
+ will-change: transform, opacity;
1286
+ }
1287
+
1288
+ :root {
1289
+ --seed-palette-color-base-100: #ffffff;
1290
+ --seed-palette-color-base-500: #c6ccd1;
1291
+ --seed-palette-color-base-800: #494f54;
1292
+ --seed-palette-color-base-1000: #191b1c;
1293
+ --seed-palette-color-blue-200: #e0f2fe;
1294
+ --seed-palette-color-blue-800: #0369a1;
1295
+ --seed-palette-color-blue-1000: #0c4a6e;
1296
+ }
1297
+
1298
+ button {
1299
+ all: unset;
1300
+ }
1301
+
1302
+ .SelectTrigger {
1303
+ display: inline-flex;
1304
+ align-items: center;
1305
+ justify-content: center;
1306
+ border-radius: 4px;
1307
+ padding: 0 15px;
1308
+ font-size: 13px;
1309
+ line-height: 1;
1310
+ height: 35px;
1311
+ gap: 5px;
1312
+ background-color: white;
1313
+ color: var(--seed-palette-color-base-1000);
1314
+ box-shadow: 0 2px 10px var(--seed-palette-color-base-1000);
1315
+ }
1316
+ .SelectTrigger:hover {
1317
+ background-color: var(--seed-palette-color-blue-200);
1318
+ }
1319
+ .SelectTrigger:focus {
1320
+ box-shadow: 0 0 0 2px black;
1321
+ }
1322
+ .SelectTrigger[data-placeholder] {
1323
+ color: var(--seed-palette-color-base-800);
1324
+ }
1325
+
1326
+ .SelectIcon {
1327
+ color: var(--seed-palette-color-base-1000);
1328
+ }
1329
+
1330
+ .SelectContent {
1331
+ overflow: hidden;
1332
+ background-color: white;
1333
+ border-radius: 6px;
1334
+ box-shadow: 0px 10px 38px -10px rgba(22, 23, 24, 0.35), 0px 10px 20px -15px rgba(22, 23, 24, 0.2);
1335
+ }
1336
+
1337
+ .SelectViewport {
1338
+ padding: 5px;
1339
+ }
1340
+
1341
+ .SelectItem {
1342
+ font-size: 13px;
1343
+ line-height: 1;
1344
+ color: var(--seed-palette-color-base-1000);
1345
+ border-radius: 3px;
1346
+ display: flex;
1347
+ align-items: center;
1348
+ height: 25px;
1349
+ padding: 0 35px 0 25px;
1350
+ position: relative;
1351
+ user-select: none;
1352
+ }
1353
+ .SelectItem[data-disabled] {
1354
+ color: var(--seed-palette-color-blue-800);
1355
+ pointer-events: none;
1356
+ }
1357
+ .SelectItem[data-highlighted] {
1358
+ outline: none;
1359
+ background-color: var(--seed-palette-color-base-800);
1360
+ color: var(--seed-color-violet-1);
1361
+ }
1362
+
1363
+ .SelectLabel {
1364
+ padding: 0 25px;
1365
+ font-size: 12px;
1366
+ line-height: 25px;
1367
+ color: var(--seed-palette-color-blue-1000);
1368
+ }
1369
+
1370
+ .SelectSeparator {
1371
+ height: 1px;
1372
+ background-color: var(--seed-palette-color-base-500);
1373
+ margin: 5px;
1374
+ }
1375
+
1376
+ .SelectItemIndicator {
1377
+ position: absolute;
1378
+ left: 0;
1379
+ width: 25px;
1380
+ display: inline-flex;
1381
+ align-items: center;
1382
+ justify-content: center;
1383
+ }
1384
+
1385
+ .SelectScrollButton {
1386
+ display: flex;
1387
+ align-items: center;
1388
+ justify-content: center;
1389
+ height: 25px;
1390
+ background-color: white;
1391
+ color: var(--seed-palette-color-base-1000);
1392
+ cursor: default;
1393
+ }
1394
+
1395
+ .toggle {
1396
+ width: 52px;
1397
+ height: 28px;
1398
+ background-color: var(--seed-palette-color-base-400);
1399
+ border-radius: var(--seed-rounding-500);
1400
+ position: relative;
1401
+ }
1402
+ .toggle[data-state=checked] {
1403
+ background-color: var(--seed-brand-color-primary);
1404
+ }
1405
+
1406
+ .toggle-thumb {
1407
+ display: block;
1408
+ width: 22px;
1409
+ height: 22px;
1410
+ background-color: var(--seed-ui-color-icon-white);
1411
+ border-radius: var(--seed-rounding-400);
1412
+ transition: transform 100ms;
1413
+ transform: translateX(4px);
1414
+ will-change: transform;
1415
+ box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
1416
+ }
1417
+ .toggle-thumb[data-state=checked] {
1418
+ transform: translateX(26px);
1419
+ }
1420
+
1421
+ .popup {
1422
+ background-color: var(--seed-ui-color-background-white);
1423
+ border-radius: 16px;
1424
+ box-shadow: 0px 4px 16px 0px rgba(109, 109, 109, 0.07);
1425
+ position: fixed;
1426
+ top: 50%;
1427
+ left: 50%;
1428
+ transform: translate(-50%, -50%);
1429
+ width: 100%;
1430
+ max-width: 450px;
1431
+ max-height: 85vh;
1432
+ padding: 24px 16px;
1433
+ animation: popup-content-show 150ms cubic-bezier(0.16, 1, 0.3, 1);
1434
+ overflow-y: auto;
1435
+ }
1436
+ .popup:focus {
1437
+ outline: none;
1438
+ }
1439
+ .popup--actions {
1440
+ display: flex;
1441
+ justify-content: flex-end;
1442
+ gap: 8px;
1443
+ margin-top: 24px;
1444
+ }
1445
+ .popup--actions > * {
1446
+ flex: 1;
1447
+ }
1448
+ .popup--actions-typeB {
1449
+ display: flex;
1450
+ justify-content: space-between;
1451
+ gap: 8px;
1452
+ }
1453
+ .popup--actions-left {
1454
+ min-width: 76px;
1455
+ flex: 0 0 auto;
1456
+ }
1457
+ .popup--actions-right {
1458
+ flex: 1 1 auto;
1459
+ }
1460
+ @keyframes popup-overlay-show {
1461
+ from {
1462
+ opacity: 0;
1463
+ }
1464
+ to {
1465
+ opacity: 1;
1466
+ }
1467
+ }
1468
+ @keyframes popup-content-show {
1469
+ from {
1470
+ opacity: 0;
1471
+ transform: translate(-50%, -48%) scale(0.96);
1472
+ }
1473
+ to {
1474
+ opacity: 1;
1475
+ transform: translate(-50%, -50%) scale(1);
1476
+ }
1477
+ }
1478
+ .visually-hidden {
1479
+ border: 0;
1480
+ clip: rect(0 0 0 0);
1481
+ height: 1px;
1482
+ margin: -1px;
1483
+ overflow: hidden;
1484
+ padding: 0;
1485
+ position: absolute;
1486
+ width: 1px;
1487
+ white-space: nowrap;
1488
+ word-wrap: normal;
1489
+ }
1490
+
1491
+ :root {
1492
+ --input-transition: 0.2s ease-in-out;
1493
+ }
1494
+
1495
+ .input-wrapper {
1496
+ position: relative;
1497
+ width: 100%;
1498
+ display: flex;
1499
+ align-items: center;
1500
+ }
1501
+ .input-wrapper.input--display-line .input {
1502
+ border: 1px solid var(--seed-ui-color-line-medium);
1503
+ border-radius: 0;
1504
+ }
1505
+ .input-wrapper.input--display-line .input:focus {
1506
+ border-bottom-color: var(--seed-brand-color-primary);
1507
+ }
1508
+ .input-wrapper.input--display-line .input:hover:not(:disabled) {
1509
+ border-bottom-color: var(--seed-brand-color-primary);
1510
+ }
1511
+ .input-wrapper.input--display-box .input {
1512
+ border: 1px solid var(--seed-ui-color-line-medium);
1513
+ border-radius: var(--seed-spacing-300);
1514
+ }
1515
+ .input-wrapper.input--display-box .input:focus {
1516
+ border-color: var(--seed-brand-color-primary);
1517
+ }
1518
+ .input-wrapper.input--display-box .input:hover:not(:disabled) {
1519
+ border-color: var(--seed-brand-color-primary);
1520
+ }
1521
+ .input-wrapper.input--error .input {
1522
+ border-color: var(--seed-brand-color-point2);
1523
+ }
1524
+ .input-wrapper.input--error .input:focus {
1525
+ border-color: var(--seed-brand-color-point2);
1526
+ }
1527
+ .input-wrapper.input--disabled {
1528
+ opacity: 0.5;
1529
+ cursor: not-allowed;
1530
+ }
1531
+ .input-wrapper.input--disabled .input {
1532
+ border: 1px solid var(--seed-ui-color-line-medium);
1533
+ color: var(--seed-ui-color-text-disabled);
1534
+ }
1535
+
1536
+ .input {
1537
+ width: 100%;
1538
+ padding: 17px var(--seed-spacing-500);
1539
+ height: var(--seed-font-line-height-lg);
1540
+ font-size: var(--seed-font-size-sm);
1541
+ line-height: var(--seed-font-size-sm);
1542
+ background: var(--seed-ui-color-background-white);
1543
+ color: var(--seed-ui-color-text-black);
1544
+ transition: all var(--input-transition);
1545
+ }
1546
+ .input:focus {
1547
+ outline: none;
1548
+ }
1549
+ .input[type=file] {
1550
+ cursor: pointer;
1551
+ color: transparent;
1552
+ }
1553
+ .input[type=file]::-webkit-file-upload-button {
1554
+ visibility: hidden;
1555
+ width: 0;
1556
+ }
1557
+ .input[type=file]::before {
1558
+ content: "파일 선택";
1559
+ color: var(--seed-ui-color-text-lite);
1560
+ }
1561
+ .input[type=file].has-file::before {
1562
+ content: "파일 선택 완료";
1563
+ color: var(--seed-ui-color-text-black);
1564
+ }
1565
+ .input[type=file]:disabled::before {
1566
+ background: var(--seed-ui-color-background-guide);
1567
+ color: var(--seed-ui-color-text-disabled);
1568
+ cursor: not-allowed;
1569
+ }
1570
+
1571
+ .input--action {
1572
+ position: absolute;
1573
+ right: var(--seed-spacing-500);
1574
+ top: 50%;
1575
+ transform: translateY(-50%);
1576
+ background: none;
1577
+ border: none;
1578
+ cursor: pointer;
1579
+ color: var(--seed-ui-color-text-lite);
1580
+ }
1581
+ .input--action:hover:not(:disabled) {
1582
+ color: var(--seed-ui-color-text-dark);
1583
+ }
1584
+ .input--action.input--action-link {
1585
+ height: 24px;
1586
+ }
1587
+ .input--action.input--close {
1588
+ height: 16px;
1589
+ }
1590
+
1591
+ .tabs {
1592
+ position: relative;
1593
+ display: flex;
1594
+ flex-direction: column;
1595
+ }
1596
+
1597
+ .tabs--list,
1598
+ .tabs--trigger,
1599
+ .tabs--indicator {
1600
+ box-sizing: border-box;
1601
+ }
1602
+
1603
+ .tabs--list-wrapper {
1604
+ position: relative;
1605
+ }
1606
+
1607
+ .tabs--list {
1608
+ display: flex;
1609
+ height: 48px;
1610
+ padding: var(--seed-spacing-200);
1611
+ gap: var(--seed-spacing-200);
1612
+ border-radius: var(--seed-rounding-500);
1613
+ background-color: var(--seed-ui-color-background-chips);
1614
+ }
1615
+
1616
+ .tabs--indicator {
1617
+ position: absolute;
1618
+ top: var(--seed-spacing-200);
1619
+ left: 0;
1620
+ height: calc(48px - var(--seed-spacing-200) * 2);
1621
+ box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.08);
1622
+ background-color: var(--seed-ui-color-background-white);
1623
+ border-radius: var(--seed-rounding-500);
1624
+ transition: all 0.2s ease-in-out;
1625
+ z-index: 0;
1626
+ }
1627
+
1628
+ .tabs--trigger {
1629
+ position: relative;
1630
+ display: flex;
1631
+ flex: 1;
1632
+ align-items: center;
1633
+ justify-content: center;
1634
+ font-size: var(--seed-font-size-s);
1635
+ border-radius: var(--seed-rounding-400);
1636
+ transition: all 0.2s ease-in-out;
1637
+ z-index: 1;
1638
+ }
1639
+ .tabs--trigger[data-state=inactive] {
1640
+ color: var(--seed-ui-color-text-lite);
1641
+ font-weight: var(--seed-font-weight-400);
1642
+ }
1643
+ .tabs--trigger[data-state=active] {
1644
+ color: var(--seed-ui-color-text-black);
1645
+ font-weight: var(--seed-font-weight-700);
1646
+ }
1647
+ .toggle {
1648
+ width: 52px;
1649
+ height: 28px;
1650
+ background-color: var(--seed-palette-color-base-400);
1651
+ border-radius: var(--seed-rounding-500);
1652
+ position: relative;
1653
+ }
1654
+ .toggle[data-state=checked] {
1655
+ background-color: var(--seed-brand-color-primary);
1656
+ }
1657
+
1658
+ .toggle-thumb {
1659
+ display: block;
1660
+ width: 22px;
1661
+ height: 22px;
1662
+ background-color: var(--seed-ui-color-icon-white);
1663
+ border-radius: var(--seed-rounding-400);
1664
+ transition: transform 100ms;
1665
+ transform: translateX(4px);
1666
+ will-change: transform;
1667
+ box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
1668
+ }
1669
+ .toggle-thumb[data-state=checked] {
1670
+ transform: translateX(26px);
1671
+ }
1672
+ .popup {
1673
+ background-color: var(--seed-ui-color-background-white);
1674
+ border-radius: 16px;
1675
+ box-shadow: 0px 4px 16px 0px rgba(109, 109, 109, 0.07);
1676
+ position: fixed;
1677
+ top: 50%;
1678
+ left: 50%;
1679
+ transform: translate(-50%, -50%);
1680
+ width: 100%;
1681
+ max-width: 450px;
1682
+ max-height: 85vh;
1683
+ padding: 24px 16px;
1684
+ animation: popup-content-show 150ms cubic-bezier(0.16, 1, 0.3, 1);
1685
+ overflow-y: auto;
1686
+ }
1687
+ .popup:focus {
1688
+ outline: none;
1689
+ }
1690
+ .popup--actions {
1691
+ display: flex;
1692
+ justify-content: flex-end;
1693
+ gap: 8px;
1694
+ margin-top: 24px;
1695
+ }
1696
+ .popup--actions > * {
1697
+ flex: 1;
1698
+ }
1699
+ .popup--actions-typeB {
1700
+ display: flex;
1701
+ justify-content: space-between;
1702
+ gap: 8px;
1703
+ }
1704
+ .popup--actions-left {
1705
+ min-width: 76px;
1706
+ flex: 0 0 auto;
1707
+ }
1708
+ .popup--actions-right {
1709
+ flex: 1 1 auto;
1710
+ }
1711
+ @keyframes popup-overlay-show {
1712
+ from {
1713
+ opacity: 0;
1714
+ }
1715
+ to {
1716
+ opacity: 1;
1717
+ }
1718
+ }
1719
+ @keyframes popup-content-show {
1720
+ from {
1721
+ opacity: 0;
1722
+ transform: translate(-50%, -48%) scale(0.96);
1723
+ }
1724
+ to {
1725
+ opacity: 1;
1726
+ transform: translate(-50%, -50%) scale(1);
1727
+ }
1728
+ }
1729
+ .visually-hidden {
1730
+ border: 0;
1731
+ clip: rect(0 0 0 0);
1732
+ height: 1px;
1733
+ margin: -1px;
1734
+ overflow: hidden;
1735
+ padding: 0;
1736
+ position: absolute;
1737
+ width: 1px;
1738
+ white-space: nowrap;
1739
+ word-wrap: normal;
1740
+ }
1741
+ @charset "UTF-8";
1742
+ :root {
1743
+ --input-transition: 0.2s ease-in-out;
1744
+ }
1745
+
1746
+ .input-wrapper {
1747
+ position: relative;
1748
+ width: 100%;
1749
+ display: flex;
1750
+ align-items: center;
1751
+ }
1752
+ .input-wrapper.input--display-line .input {
1753
+ border: 1px solid var(--seed-ui-color-line-medium);
1754
+ border-radius: 0;
1755
+ }
1756
+ .input-wrapper.input--display-line .input:focus {
1757
+ border-bottom-color: var(--seed-brand-color-primary);
1758
+ }
1759
+ .input-wrapper.input--display-line .input:hover:not(:disabled) {
1760
+ border-bottom-color: var(--seed-brand-color-primary);
1761
+ }
1762
+ .input-wrapper.input--display-box .input {
1763
+ border: 1px solid var(--seed-ui-color-line-medium);
1764
+ border-radius: var(--seed-spacing-300);
1765
+ }
1766
+ .input-wrapper.input--display-box .input:focus {
1767
+ border-color: var(--seed-brand-color-primary);
1768
+ }
1769
+ .input-wrapper.input--display-box .input:hover:not(:disabled) {
1770
+ border-color: var(--seed-brand-color-primary);
1771
+ }
1772
+ .input-wrapper.input--error .input {
1773
+ border-color: var(--seed-brand-color-point2);
1774
+ }
1775
+ .input-wrapper.input--error .input:focus {
1776
+ border-color: var(--seed-brand-color-point2);
1777
+ }
1778
+ .input-wrapper.input--disabled {
1779
+ opacity: 0.5;
1780
+ cursor: not-allowed;
1781
+ }
1782
+ .input-wrapper.input--disabled .input {
1783
+ border: 1px solid var(--seed-ui-color-line-medium);
1784
+ color: var(--seed-ui-color-text-disabled);
1785
+ }
1786
+
1787
+ .input {
1788
+ width: 100%;
1789
+ padding: 17px var(--seed-spacing-500);
1790
+ height: var(--seed-font-line-height-lg);
1791
+ font-size: var(--seed-font-size-sm);
1792
+ line-height: var(--seed-font-size-sm);
1793
+ background: var(--seed-ui-color-background-white);
1794
+ color: var(--seed-ui-color-text-black);
1795
+ transition: all var(--input-transition);
1796
+ }
1797
+ .input:focus {
1798
+ outline: none;
1799
+ }
1800
+ .input[type=file] {
1801
+ cursor: pointer;
1802
+ color: transparent;
1803
+ }
1804
+ .input[type=file]::-webkit-file-upload-button {
1805
+ visibility: hidden;
1806
+ width: 0;
1807
+ }
1808
+ .input[type=file]::before {
1809
+ content: "파일 선택";
1810
+ color: var(--seed-ui-color-text-lite);
1811
+ }
1812
+ .input[type=file].has-file::before {
1813
+ content: "파일 선택 완료";
1814
+ color: var(--seed-ui-color-text-black);
1815
+ }
1816
+ .input[type=file]:disabled::before {
1817
+ background: var(--seed-ui-color-background-guide);
1818
+ color: var(--seed-ui-color-text-disabled);
1819
+ cursor: not-allowed;
1820
+ }
1821
+
1822
+ .input--action {
1823
+ position: absolute;
1824
+ right: var(--seed-spacing-500);
1825
+ top: 50%;
1826
+ transform: translateY(-50%);
1827
+ background: none;
1828
+ border: none;
1829
+ cursor: pointer;
1830
+ color: var(--seed-ui-color-text-lite);
1831
+ }
1832
+ .input--action:hover:not(:disabled) {
1833
+ color: var(--seed-ui-color-text-dark);
1834
+ }
1835
+ .input--action.input--action-link {
1836
+ height: 24px;
1837
+ }
1838
+ .input--action.input--close {
1839
+ height: 16px;
1840
+ }
1841
+ .tabs {
1842
+ position: relative;
1843
+ display: flex;
1844
+ flex-direction: column;
1845
+ }
1846
+
1847
+ .tabs--list,
1848
+ .tabs--trigger,
1849
+ .tabs--indicator {
1850
+ box-sizing: border-box;
1851
+ }
1852
+
1853
+ .tabs--list-wrapper {
1854
+ position: relative;
1855
+ }
1856
+
1857
+ .tabs--list {
1858
+ display: flex;
1859
+ height: 48px;
1860
+ padding: var(--seed-spacing-200);
1861
+ gap: var(--seed-spacing-200);
1862
+ border-radius: var(--seed-rounding-500);
1863
+ background-color: var(--seed-ui-color-background-chips);
1864
+ }
1865
+
1866
+ .tabs--indicator {
1867
+ position: absolute;
1868
+ top: var(--seed-spacing-200);
1869
+ left: 0;
1870
+ height: calc(48px - var(--seed-spacing-200) * 2);
1871
+ box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.08);
1872
+ background-color: var(--seed-ui-color-background-white);
1873
+ border-radius: var(--seed-rounding-500);
1874
+ transition: all 0.2s ease-in-out;
1875
+ z-index: 0;
1876
+ }
1877
+
1878
+ .tabs--trigger {
1879
+ position: relative;
1880
+ display: flex;
1881
+ flex: 1;
1882
+ align-items: center;
1883
+ justify-content: center;
1884
+ font-size: var(--seed-font-size-s);
1885
+ border-radius: var(--seed-rounding-400);
1886
+ transition: all 0.2s ease-in-out;
1887
+ z-index: 1;
1888
+ }
1889
+ .tabs--trigger[data-state=inactive] {
1890
+ color: var(--seed-ui-color-text-lite);
1891
+ font-weight: var(--seed-font-weight-400);
1892
+ }
1893
+ .tabs--trigger[data-state=active] {
1894
+ color: var(--seed-ui-color-text-black);
1895
+ font-weight: var(--seed-font-weight-700);
1896
+ }