dak-krds 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.css ADDED
@@ -0,0 +1,4057 @@
1
+ /* src/components/Label/Label.module.css */
2
+ .label {
3
+ display: flex;
4
+ align-items: center;
5
+ gap: 4px;
6
+ margin: 0;
7
+ padding: 0;
8
+ color: inherit;
9
+ }
10
+ .size_l {
11
+ font-size: 1.5em;
12
+ line-height: 1.3;
13
+ }
14
+ @media (min-width: 640px) {
15
+ .size_l {
16
+ font-size: 1.25em;
17
+ line-height: 1.3;
18
+ }
19
+ }
20
+ .size_m {
21
+ font-size: 1.063em;
22
+ line-height: 1.4;
23
+ }
24
+ @media (min-width: 640px) {
25
+ .size_m {
26
+ font-size: 1.063em;
27
+ line-height: 1.4;
28
+ }
29
+ }
30
+ .size_s {
31
+ font-size: 1em;
32
+ line-height: 1.5;
33
+ }
34
+ @media (min-width: 640px) {
35
+ .size_s {
36
+ font-size: 1em;
37
+ line-height: 1.5;
38
+ }
39
+ }
40
+ .size_xs {
41
+ font-size: 0.8125em;
42
+ line-height: 1.6;
43
+ }
44
+ @media (min-width: 640px) {
45
+ .size_xs {
46
+ font-size: 0.8125em;
47
+ line-height: 1.6;
48
+ }
49
+ }
50
+ .weight_regular {
51
+ font-weight: 500;
52
+ }
53
+ .weight_bold {
54
+ font-weight: 700;
55
+ }
56
+ .required {
57
+ color: var(--krds-color-point-50);
58
+ }
59
+
60
+ /* src/components/Accordion/Accordion.module.css */
61
+ .accordion {
62
+ border-top: 1px solid var(--krds-color-gray-20);
63
+ overflow: hidden;
64
+ }
65
+ .accordionItem {
66
+ width: 100%;
67
+ border-bottom: 1px solid var(--krds-color-gray-20);
68
+ }
69
+ .plain {
70
+ display: flex;
71
+ flex-direction: column;
72
+ gap: 8px;
73
+ padding: 8px 0;
74
+ .chevronContainer {
75
+ margin: 0 !important;
76
+ }
77
+ label {
78
+ flex: 1;
79
+ }
80
+ .accordionItem {
81
+ border-bottom: none !important;
82
+ border-radius: 12px;
83
+ }
84
+ .accordionItem[data-isopen=true] {
85
+ background-color: var(--krds-color-primary-5);
86
+ label {
87
+ color: var(--krds-color-secondary-80);
88
+ }
89
+ }
90
+ .accordionButton:focus-visible {
91
+ outline: 2px solid var(--krds-color-primary-50);
92
+ outline-offset: 2px;
93
+ border-radius: 8px;
94
+ }
95
+ }
96
+ .accordionButton {
97
+ width: 100%;
98
+ text-align: left;
99
+ padding: 24px;
100
+ display: flex;
101
+ justify-content: space-between;
102
+ align-items: center;
103
+ border: none;
104
+ background: none;
105
+ cursor: pointer;
106
+ outline: none;
107
+ }
108
+ .accordionButton:focus-visible {
109
+ box-shadow: 0 0 0 2px var(--krds-color-primary-50);
110
+ outline: 2px solid transparent;
111
+ outline-offset: 2px;
112
+ }
113
+ .accordionTitle {
114
+ cursor: pointer;
115
+ }
116
+ .chevronContainer {
117
+ margin-left: 24px;
118
+ flex-shrink: 0;
119
+ }
120
+ .chevronIcon {
121
+ transform: rotate(180deg);
122
+ transition: transform 0.3s ease;
123
+ }
124
+ .chevronIconOpen {
125
+ transform: rotate(0);
126
+ }
127
+ .accordionContent {
128
+ overflow: hidden;
129
+ transition: max-height 0.3s ease-in-out;
130
+ }
131
+ .accordionContentInner {
132
+ padding: 24px;
133
+ }
134
+ .srOnly {
135
+ position: absolute;
136
+ width: 1px;
137
+ height: 1px;
138
+ padding: 0;
139
+ margin: -1px;
140
+ overflow: hidden;
141
+ clip: rect(0, 0, 0, 0);
142
+ white-space: nowrap;
143
+ border: 0;
144
+ }
145
+
146
+ /* src/components/Icon/Icon.module.css */
147
+ .icon {
148
+ display: inline-block;
149
+ flex-shrink: 0;
150
+ color: inherit;
151
+ }
152
+ .icon path {
153
+ fill: var(--icon-color);
154
+ }
155
+ .stroke path {
156
+ fill: none;
157
+ stroke: var(--icon-color);
158
+ }
159
+ .multiColor {
160
+ display: inline-block;
161
+ flex-shrink: 0;
162
+ color: inherit;
163
+ }
164
+ .multiColor path {
165
+ fill: var(--icon-primary, var(--krds-color-primary-50));
166
+ }
167
+ .multiColor path:nth-child(2) {
168
+ fill: var(--icon-secondary, var(--krds-color-gray-0));
169
+ }
170
+
171
+ /* src/components/Alert/Alert.module.css */
172
+ .alertContainer {
173
+ border-radius: 12px;
174
+ display: flex;
175
+ padding: 1rem;
176
+ gap: 8px;
177
+ align-items: flex-start;
178
+ width: 720px;
179
+ }
180
+ @media screen and (max-width: 768px) {
181
+ .alertContainer {
182
+ width: 329px;
183
+ }
184
+ }
185
+ .titleRow {
186
+ display: flex;
187
+ align-items: center;
188
+ gap: 8px;
189
+ }
190
+ .title {
191
+ font-weight: 700;
192
+ font-size: 17px;
193
+ line-height: 26px;
194
+ width: 100%;
195
+ }
196
+ .title_danger {
197
+ color: var(--krds-color-danger-60);
198
+ }
199
+ .title_success {
200
+ color: var(--krds-color-success-60);
201
+ }
202
+ .title_warning {
203
+ color: var(--krds-color-warning-60);
204
+ }
205
+ .title_information {
206
+ color: var(--krds-color-information-60);
207
+ }
208
+ .title_secondary {
209
+ color: var(--krds-color-secondary-80);
210
+ }
211
+ .description {
212
+ font-weight: 400;
213
+ font-size: 1.063rem;
214
+ line-height: 1.625rem;
215
+ color: var(--krds-color-gray-90);
216
+ }
217
+ .descriptionIndented {
218
+ font-weight: 400;
219
+ font-size: 1.063rem;
220
+ line-height: 1.625rem;
221
+ color: var(--krds-color-gray-90);
222
+ }
223
+ @media screen and (max-width: 768px) {
224
+ .descriptionIndented {
225
+ font-size: 0.938rem;
226
+ }
227
+ }
228
+ .danger {
229
+ background-color: var(--krds-color-danger-5);
230
+ border: 1px solid var(--krds-color-danger-10);
231
+ color: var(--krds-color-danger-60);
232
+ }
233
+ .warning {
234
+ background-color: var(--krds-color-warning-5);
235
+ border: 1px solid var(--krds-color-warning-10);
236
+ color: var(--krds-color-warning-60);
237
+ }
238
+ .success {
239
+ background-color: var(--krds-color-success-5);
240
+ border: 1px solid var(--krds-color-success-10);
241
+ color: var(--krds-color-success-60);
242
+ }
243
+ .information {
244
+ background-color: var(--krds-color-information-5);
245
+ border: 1px solid var(--krds-color-information-10);
246
+ color: var(--krds-color-information-60);
247
+ }
248
+ .secondary {
249
+ background-color: var(--krds-color-secondary-5);
250
+ border: 1px solid var(--krds-color-secondary-10);
251
+ color: var(--krds-color-secondary-80);
252
+ rect {
253
+ fill: var(--krds-color-secondary-80);
254
+ }
255
+ }
256
+ .content {
257
+ display: flex;
258
+ flex-direction: column;
259
+ gap: 8px;
260
+ width: 100%;
261
+ }
262
+ .icon {
263
+ margin-top: 2px;
264
+ }
265
+
266
+ /* src/components/Badge/Badge.module.css */
267
+ .badge {
268
+ display: inline-flex;
269
+ align-items: center;
270
+ justify-content: center;
271
+ padding: 2px 8px;
272
+ width: fit-content;
273
+ }
274
+ .normalWeight {
275
+ font-weight: 400;
276
+ font-size: 15px;
277
+ line-height: 24px;
278
+ }
279
+ .defaultStroke {
280
+ background-color: transparent;
281
+ border: 1px solid var(--krds-color-gray-40);
282
+ color: var(--krds-color-gray-40);
283
+ }
284
+ .defaultFillStrong {
285
+ background-color: var(--krds-color-gray-10);
286
+ color: var(--krds-color-gray-50);
287
+ }
288
+ .defaultFillSoft {
289
+ background-color: var(--krds-color-gray-10);
290
+ color: var(--krds-color-gray-50);
291
+ }
292
+ .primaryStroke {
293
+ background: transparent;
294
+ border: 1px solid var(--krds-color-primary-50);
295
+ color: var(--krds-color-primary-60);
296
+ }
297
+ .primaryFillStrong {
298
+ background: var(--krds-color-primary-50);
299
+ color: var(--krds-color-gray-0);
300
+ }
301
+ .primaryFillSoft {
302
+ background: var(--krds-color-primary-5);
303
+ color: var(--krds-color-primary-60);
304
+ }
305
+ .secondaryStroke {
306
+ background: transparent;
307
+ border: 1px solid var(--krds-color-secondary-70);
308
+ color: var(--krds-color-secondary-80);
309
+ }
310
+ .secondaryFillStrong {
311
+ background: var(--krds-color-secondary-70);
312
+ color: var(--krds-color-gray-0);
313
+ }
314
+ .secondaryFillSoft {
315
+ background: var(--krds-color-secondary-5);
316
+ color: var(--krds-color-secondary-80);
317
+ }
318
+ .successStroke {
319
+ background: transparent;
320
+ border: 1px solid var(--krds-color-success-50);
321
+ color: var(--krds-color-success-60);
322
+ }
323
+ .successFillStrong {
324
+ background: var(--krds-color-success-50);
325
+ color: var(--krds-color-gray-0);
326
+ }
327
+ .successFillSoft {
328
+ background: var(--krds-color-success-5);
329
+ color: var(--krds-color-success-60);
330
+ }
331
+ .warningStroke {
332
+ background: transparent;
333
+ border: 1px solid var(--krds-color-warning-50);
334
+ color: var(--krds-color-warning-60);
335
+ }
336
+ .warningFillStrong {
337
+ background: var(--krds-color-warning-50);
338
+ color: var(--krds-color-gray-0);
339
+ }
340
+ .warningFillSoft {
341
+ background: var(--krds-color-warning-5);
342
+ color: var(--krds-color-warning-60);
343
+ }
344
+ .dangerStroke {
345
+ background: transparent;
346
+ border: 1px solid var(--krds-color-danger-50);
347
+ color: var(--krds-color-danger-60);
348
+ }
349
+ .dangerFillStrong {
350
+ background: var(--krds-color-danger-50);
351
+ color: var(--krds-color-gray-0);
352
+ }
353
+ .dangerFillSoft {
354
+ background: var(--krds-color-danger-5);
355
+ color: var(--krds-color-danger-60);
356
+ }
357
+ .informationStroke {
358
+ background: transparent;
359
+ border: 1px solid var(--krds-color-information-50);
360
+ color: var(--krds-color-information-60);
361
+ }
362
+ .informationFillStrong {
363
+ background: var(--krds-color-information-50);
364
+ color: var(--krds-color-gray-0);
365
+ }
366
+ .informationFillSoft {
367
+ background: var(--krds-color-information-5);
368
+ color: var(--krds-color-information-60);
369
+ }
370
+ .pointStroke {
371
+ background: transparent;
372
+ border: 1px solid var(--krds-color-point-50);
373
+ color: var(--krds-color-point-60);
374
+ }
375
+ .pointFillStrong {
376
+ background: var(--krds-color-point-50);
377
+ color: var(--krds-color-gray-0);
378
+ }
379
+ .pointFillSoft {
380
+ background: var(--krds-color-point-5);
381
+ color: var(--krds-color-point-60);
382
+ }
383
+ .errorStroke {
384
+ background: var(--krds-color-point-5);
385
+ color: var(--krds-color-point-60);
386
+ }
387
+ .errorFillStrong {
388
+ background: var(--krds-color-point-5);
389
+ color: var(--krds-color-point-60);
390
+ }
391
+ .errorFillSoft {
392
+ background: var(--krds-color-point-5);
393
+ color: var(--krds-color-point-60);
394
+ }
395
+
396
+ /* src/components/Body/Body.module.css */
397
+ .body {
398
+ margin: 0;
399
+ }
400
+ .size_1 {
401
+ font-size: 20px;
402
+ line-height: 30px;
403
+ }
404
+ .size_2 {
405
+ font-size: 18px;
406
+ line-height: 26px;
407
+ }
408
+ .weight_regular {
409
+ font-weight: 400;
410
+ }
411
+ .weight_semibold {
412
+ font-weight: 600;
413
+ }
414
+ .weight_bold {
415
+ font-weight: 700;
416
+ }
417
+
418
+ /* src/components/Breadcrumb/Breadcrumb.module.css */
419
+ .list {
420
+ display: flex;
421
+ align-items: center;
422
+ gap: 4px;
423
+ padding: 0;
424
+ }
425
+ .item {
426
+ display: flex;
427
+ align-items: center;
428
+ gap: 4px;
429
+ }
430
+ .label {
431
+ display: inline-flex;
432
+ align-items: center;
433
+ gap: 4px;
434
+ text-decoration: underline;
435
+ text-underline-offset: 2px;
436
+ font-weight: 500;
437
+ cursor: pointer;
438
+ max-width: none;
439
+ white-space: nowrap;
440
+ }
441
+ @media (max-width: 768px) {
442
+ .labelText {
443
+ display: inline-block;
444
+ max-width: 64px;
445
+ overflow: hidden;
446
+ text-overflow: ellipsis;
447
+ white-space: nowrap;
448
+ vertical-align: bottom;
449
+ }
450
+ }
451
+ .label:focus {
452
+ outline: none;
453
+ box-shadow: 0 0 0 2px var(--ring-primary);
454
+ outline-offset: 2px;
455
+ }
456
+
457
+ /* src/components/Spinner/Spinner.module.css */
458
+ .spinner {
459
+ display: inline-flex;
460
+ justify-content: center;
461
+ align-items: center;
462
+ }
463
+ .svg {
464
+ animation: spin 1s linear infinite;
465
+ }
466
+ .circle {
467
+ opacity: 0.25;
468
+ }
469
+ .path {
470
+ opacity: 0.75;
471
+ }
472
+ .s {
473
+ width: 1.25rem;
474
+ height: 1.25rem;
475
+ }
476
+ .m {
477
+ width: 2rem;
478
+ height: 2rem;
479
+ }
480
+ .l {
481
+ width: 3rem;
482
+ height: 3rem;
483
+ }
484
+ @keyframes spin {
485
+ to {
486
+ transform: rotate(360deg);
487
+ }
488
+ }
489
+
490
+ /* src/components/Button/Button.module.css */
491
+ .button {
492
+ display: inline-flex;
493
+ align-items: center;
494
+ justify-content: center;
495
+ gap: 0.25rem;
496
+ letter-spacing: -0.02em;
497
+ transition: all 0.2s;
498
+ outline: none;
499
+ border: none;
500
+ cursor: pointer;
501
+ user-select: none;
502
+ font-family: inherit;
503
+ white-space: nowrap;
504
+ }
505
+ .button:focus {
506
+ outline: none;
507
+ box-shadow: 0 0 0 2px var(--krds-color-gray-0), 0 0 0 4px var(--krds-color-primary-40);
508
+ }
509
+ .button span {
510
+ display: inline-flex;
511
+ align-items: center;
512
+ vertical-align: middle;
513
+ }
514
+ .icon {
515
+ display: inline-flex;
516
+ align-items: center;
517
+ vertical-align: middle;
518
+ }
519
+ .content {
520
+ display: inline-flex;
521
+ align-items: center;
522
+ vertical-align: middle;
523
+ }
524
+ .custom {
525
+ background: var(--btn-bg, var(--krds-color-primary-50));
526
+ color: var(--btn-color, var(--krds-color-gray-0));
527
+ }
528
+ .custom:hover:not(.disabled) {
529
+ background: var(--btn-bg, var(--krds-color-primary-60));
530
+ opacity: 0.8;
531
+ }
532
+ .custom:active:not(.disabled) {
533
+ background: var(--btn-bg, var(--krds-color-primary-70));
534
+ }
535
+ .primary {
536
+ background: var(--krds-color-primary-50);
537
+ color: var(--krds-color-gray-0);
538
+ }
539
+ .primary:hover:not(.disabled) {
540
+ background: var(--krds-color-primary-60);
541
+ }
542
+ .primary:active:not(.disabled) {
543
+ background: var(--krds-color-primary-70);
544
+ }
545
+ .secondary {
546
+ background: var(--krds-color-primary-5);
547
+ color: var(--krds-color-primary-60);
548
+ border: 1px solid var(--krds-color-primary-50);
549
+ }
550
+ .secondary:hover:not(.disabled) {
551
+ background: var(--krds-color-primary-10);
552
+ }
553
+ .secondary:active:not(.disabled) {
554
+ background: var(--krds-color-primary-20);
555
+ }
556
+ .teriary {
557
+ background: var(--krds-color-gray-0);
558
+ color: var(--krds-color-gray-90);
559
+ border: 1px solid var(--krds-color-gray-60);
560
+ }
561
+ .teriary:hover:not(.disabled) {
562
+ background: var(--krds-color-gray-5);
563
+ }
564
+ .teriary:active:not(.disabled) {
565
+ background: var(--krds-color-gray-10);
566
+ }
567
+ .text {
568
+ background: transparent;
569
+ color: var(--krds-color-gray-90);
570
+ }
571
+ .text:hover:not(.disabled) {
572
+ color: var(--krds-color-primary-50);
573
+ }
574
+ .text:active:not(.disabled) {
575
+ color: var(--krds-color-primary-60);
576
+ }
577
+ .gray {
578
+ background: var(--krds-color-gray-10);
579
+ color: var(--krds-color-gray-90);
580
+ }
581
+ .gray:hover:not(.disabled) {
582
+ background: var(--krds-color-gray-20);
583
+ }
584
+ .gray:active:not(.disabled) {
585
+ background: var(--krds-color-gray-30);
586
+ }
587
+ .danger {
588
+ background: var(--krds-color-danger-50);
589
+ color: var(--krds-color-gray-0);
590
+ }
591
+ .danger:hover:not(.disabled) {
592
+ background: var(--krds-color-danger-60);
593
+ }
594
+ .danger:active:not(.disabled) {
595
+ background: var(--krds-color-danger-70);
596
+ }
597
+ .danger-secondary {
598
+ background: var(--krds-color-gray-0);
599
+ color: var(--krds-color-danger-60);
600
+ border: 1px solid var(--krds-color-danger-50);
601
+ }
602
+ .danger-secondary:hover:not(.disabled) {
603
+ background: var(--krds-color-danger-5);
604
+ }
605
+ .danger-secondary:active:not(.disabled) {
606
+ background: var(--krds-color-danger-10);
607
+ }
608
+ .black {
609
+ background: var(--krds-color-graphic-70);
610
+ color: var(--krds-color-gray-0);
611
+ }
612
+ .black:hover:not(.disabled) {
613
+ background: var(--krds-color-graphic-90);
614
+ }
615
+ .black:active:not(.disabled) {
616
+ background: var(--krds-color-gray-90);
617
+ }
618
+ .success {
619
+ background: var(--krds-color-success-40);
620
+ color: var(--krds-color-gray-0);
621
+ }
622
+ .success:hover:not(.disabled) {
623
+ background: var(--krds-color-success-50);
624
+ }
625
+ .success:active:not(.disabled) {
626
+ background: var(--krds-color-success-60);
627
+ }
628
+ .success-secondary {
629
+ background: var(--krds-color-success-5);
630
+ color: var(--krds-color-success-50);
631
+ border: 1px solid var(--krds-color-success-50);
632
+ }
633
+ .success-secondary:hover:not(.disabled) {
634
+ background: var(--krds-color-success-10);
635
+ }
636
+ .success-secondary:active:not(.disabled) {
637
+ background: var(--krds-color-success-20);
638
+ }
639
+ .warning {
640
+ background: var(--krds-color-warning-20);
641
+ color: var(--krds-color-gray-90);
642
+ }
643
+ .warning:hover:not(.disabled) {
644
+ background: var(--krds-color-warning-30);
645
+ }
646
+ .warning:active:not(.disabled) {
647
+ background: var(--krds-color-warning-40);
648
+ }
649
+ .outline {
650
+ background: var(--krds-color-gray-0);
651
+ color: var(--krds-color-gray-90);
652
+ border: 1px solid var(--btn-border-color, var(--krds-color-gray-80));
653
+ }
654
+ .outline:hover:not(.disabled) {
655
+ background: var(--krds-color-gray-10);
656
+ }
657
+ .outline:active:not(.disabled) {
658
+ background: var(--krds-color-gray-20);
659
+ }
660
+ .transparent {
661
+ background: transparent;
662
+ color: var(--krds-color-primary-50);
663
+ }
664
+ .transparent:hover:not(.disabled) {
665
+ color: var(--krds-color-primary-30);
666
+ }
667
+ .transparent:active:not(.disabled) {
668
+ color: var(--krds-color-primary-40);
669
+ }
670
+ .disabled {
671
+ cursor: not-allowed;
672
+ background: var(--krds-color-gray-20);
673
+ color: var(--krds-color-gray-50);
674
+ pointer-events: none;
675
+ border: 1px solid transparent;
676
+ }
677
+ .xs {
678
+ font-size: 0.9375rem;
679
+ line-height: 1.5rem;
680
+ padding: 0 0.625rem;
681
+ width: 3.75rem;
682
+ height: 2rem;
683
+ }
684
+ .s {
685
+ font-size: 0.9375rem;
686
+ line-height: 1.5rem;
687
+ padding: 0 0.75rem;
688
+ width: 4rem;
689
+ height: 2.5rem;
690
+ }
691
+ .m {
692
+ font-size: 1.0625rem;
693
+ line-height: 1.625rem;
694
+ padding: 0 1rem;
695
+ width: 4.875rem;
696
+ height: 3rem;
697
+ }
698
+ .l {
699
+ font-size: 1.1875rem;
700
+ line-height: 1.875rem;
701
+ padding: 0 1.25rem;
702
+ width: 5.625rem;
703
+ height: 3.5rem;
704
+ }
705
+ .xl {
706
+ font-size: 1.1875rem;
707
+ line-height: 1.875rem;
708
+ padding: 0 1.5rem;
709
+ width: 6.125rem;
710
+ height: 4rem;
711
+ }
712
+
713
+ /* src/components/Checkbox/Checkbox.module.css */
714
+ .checkboxContainer {
715
+ display: flex;
716
+ align-items: center;
717
+ gap: 0.5rem;
718
+ cursor: pointer;
719
+ padding: 4px;
720
+ }
721
+ .checkboxBox {
722
+ display: inline-flex;
723
+ align-items: center;
724
+ justify-content: center;
725
+ box-sizing: border-box;
726
+ border: 1px solid var(--krds-color-gray-60);
727
+ border-radius: 4px;
728
+ position: relative;
729
+ transition: all 0.3s ease;
730
+ flex-shrink: 0;
731
+ }
732
+ .checkbox_m {
733
+ width: 1.25rem;
734
+ height: 1.25rem;
735
+ font-size: 1.063rem;
736
+ }
737
+ .checkbox_l {
738
+ width: 1.5rem;
739
+ height: 1.5rem;
740
+ font-size: 1.188rem;
741
+ }
742
+ .on {
743
+ background-color: var(--checkbox-bg, var(--krds-color-primary-50));
744
+ border-color: var(--checkbox-border, var(--krds-color-primary-50));
745
+ color: var(--checkbox-icon, var(--krds-color-gray-0));
746
+ }
747
+ .off {
748
+ background-color: var(--krds-color-gray-0);
749
+ border-color: var(--krds-color-gray-60);
750
+ }
751
+ .disabled {
752
+ background-color: var(--krds-color-gray-20);
753
+ border-color: var(--krds-color-gray-30);
754
+ color: var(--krds-color-gray-40);
755
+ cursor: not-allowed;
756
+ }
757
+ .srOnly {
758
+ position: absolute;
759
+ width: 1px;
760
+ height: 1px;
761
+ padding: 0;
762
+ margin: -1px;
763
+ overflow: hidden;
764
+ clip: rect(0, 0, 0, 0);
765
+ white-space: nowrap;
766
+ border: 0;
767
+ }
768
+ .checkboxInput {
769
+ position: absolute;
770
+ width: 1px;
771
+ height: 1px;
772
+ padding: 0;
773
+ margin: -1px;
774
+ overflow: hidden;
775
+ clip: rect(0, 0, 0, 0);
776
+ white-space: nowrap;
777
+ border: 0;
778
+ }
779
+ .checkboxInput:focus-visible + .checkboxBox {
780
+ box-shadow: 0 0 0 2px white, 0 0 0 4px var(--krds-color-primary-50);
781
+ }
782
+ .checkboxLabel {
783
+ cursor: pointer;
784
+ transition: color 0.3s ease;
785
+ font-weight: 400;
786
+ color: var(--krds-color-gray-90);
787
+ }
788
+ .label_m {
789
+ font-size: 15px;
790
+ line-height: 24px;
791
+ }
792
+ .label_l {
793
+ font-size: 17px;
794
+ line-height: 26px;
795
+ }
796
+ .group {
797
+ display: flex;
798
+ }
799
+ .groupHorizontal {
800
+ flex-direction: row;
801
+ gap: 20px;
802
+ }
803
+ .groupVertical {
804
+ flex-direction: column;
805
+ gap: 20px;
806
+ }
807
+ .label {
808
+ cursor: pointer;
809
+ transition: color 0.3s ease;
810
+ font-weight: 400;
811
+ color: var(--krds-color-gray-90);
812
+ }
813
+ .labelDisabled {
814
+ cursor: not-allowed;
815
+ color: var(--krds-color-gray-50);
816
+ }
817
+
818
+ /* src/components/Checkbox/DakCheckBox.module.css */
819
+ .checkboxLabel {
820
+ display: flex;
821
+ align-items: center;
822
+ gap: 8px;
823
+ font-weight: 400;
824
+ font-size: 17px;
825
+ line-height: 26px;
826
+ color: var(--krds-color-gray-90);
827
+ cursor: pointer;
828
+ width: 100%;
829
+ }
830
+ .checkboxWrapper {
831
+ display: flex;
832
+ align-items: center;
833
+ gap: 8px;
834
+ }
835
+ .checkboxInput {
836
+ position: absolute;
837
+ opacity: 0;
838
+ pointer-events: none;
839
+ }
840
+ .clickable {
841
+ cursor: pointer;
842
+ }
843
+ .checkboxBox.disabled {
844
+ cursor: not-allowed;
845
+ }
846
+ .disabledLabel {
847
+ color: var(--krds-color-gray-40);
848
+ }
849
+ .checkboxBox {
850
+ width: 20px;
851
+ height: 20px;
852
+ border-radius: 6px;
853
+ border: 1px solid var(--krds-color-gray-60);
854
+ background-color: var(--krds-color-gray-0);
855
+ position: relative;
856
+ box-sizing: border-box;
857
+ transition: all 0.2s;
858
+ }
859
+ .large {
860
+ width: 24px;
861
+ height: 24px;
862
+ }
863
+ .checked {
864
+ background-color: var(--krds-color-primary-50);
865
+ border-color: var(--krds-color-primary-50);
866
+ }
867
+ .checked.disabled {
868
+ background-color: var(--krds-color-gray-20);
869
+ border-color: var(--krds-color-gray-30);
870
+ }
871
+ .checked::after {
872
+ content: "";
873
+ position: absolute;
874
+ left: 5px;
875
+ top: 1px;
876
+ width: 6px;
877
+ height: 10px;
878
+ border: solid white;
879
+ border-width: 0 2px 2px 0;
880
+ transform: rotate(45deg);
881
+ }
882
+ .checked.disabled::after {
883
+ border-color: var(--krds-color-gray-40);
884
+ }
885
+ .disabled:not(.checked) {
886
+ cursor: not-allowed;
887
+ opacity: 0.6;
888
+ }
889
+ .large.checked::after {
890
+ left: 6px;
891
+ top: 2px;
892
+ width: 8px;
893
+ height: 12px;
894
+ border-width: 0 2.5px 2.5px 0;
895
+ }
896
+
897
+ /* src/components/Checkbox/DakCheckBoxGroup.module.css */
898
+ .checkboxGroup {
899
+ border: none;
900
+ margin: 0;
901
+ padding: 0;
902
+ }
903
+ .horizontal {
904
+ display: flex;
905
+ gap: 16px;
906
+ }
907
+ .vertical {
908
+ display: flex;
909
+ flex-direction: column;
910
+ gap: 8px;
911
+ }
912
+ .visuallyHidden {
913
+ position: absolute;
914
+ width: 1px;
915
+ height: 1px;
916
+ margin: -1px;
917
+ padding: 0;
918
+ border: 0;
919
+ clip: rect(0 0 0 0);
920
+ overflow: hidden;
921
+ }
922
+
923
+ /* src/components/ChipGroup/ChipGroup.module.css */
924
+ .chipGroup {
925
+ display: flex;
926
+ flex-wrap: wrap;
927
+ gap: 16px;
928
+ width: 100%;
929
+ }
930
+ .formChip {
931
+ display: inline-block;
932
+ }
933
+ .radio {
934
+ display: none;
935
+ }
936
+ .outline {
937
+ display: inline-flex;
938
+ align-items: center;
939
+ gap: 0.25rem;
940
+ border: 1px solid var(--krds-color-gray-30);
941
+ border-radius: 6px;
942
+ font-weight: 400;
943
+ cursor: pointer;
944
+ background-color: var(--krds-color-gray-0);
945
+ color: var(--krds-color-gray-90);
946
+ transition: 0.2s ease;
947
+ width: auto;
948
+ padding: 8px 10px;
949
+ box-sizing: border-box;
950
+ }
951
+ .checked {
952
+ border-color: var(--krds-color-primary-50);
953
+ background-color: #e6f0ff;
954
+ color: var(--krds-color-primary-60);
955
+ }
956
+ .disabled {
957
+ border-color: var(--krds-color-gray-30);
958
+ background-color: var(--krds-color-gray-20);
959
+ color: var(--krds-color-gray-50);
960
+ cursor: not-allowed;
961
+ }
962
+ .checkIcon {
963
+ width: 1.25rem;
964
+ height: 1.25rem;
965
+ flex-shrink: 0;
966
+ }
967
+ .l .outline:not([style*=height]) {
968
+ font-size: 15px;
969
+ line-height: 24px;
970
+ padding: 12px 15px;
971
+ }
972
+ .m .outline:not([style*=height]) {
973
+ font-size: 14px;
974
+ line-height: 24px;
975
+ padding: 10px 11px;
976
+ }
977
+ .s .outline:not([style*=height]) {
978
+ font-size: 13px;
979
+ line-height: 24px;
980
+ padding: 7px 9px;
981
+ }
982
+
983
+ /* src/components/DatePicker/components/Calendar/Calendar.module.css */
984
+ .calendar {
985
+ border-radius: 0.75rem;
986
+ background-color: var(--krds-color-secondary-5);
987
+ border: 1px solid var(--krds-color-gray-20);
988
+ font-family: inherit;
989
+ width: 328px;
990
+ height: fit-content;
991
+ padding-top: 16px;
992
+ }
993
+ .headerContainer {
994
+ display: flex;
995
+ justify-content: space-between;
996
+ align-items: center;
997
+ padding: 3px 24px;
998
+ height: 56px;
999
+ gap: 16px;
1000
+ }
1001
+ .headerContainer > div {
1002
+ text-align: center;
1003
+ }
1004
+ .header {
1005
+ display: flex;
1006
+ width: 32px;
1007
+ height: 32px;
1008
+ justify-content: center;
1009
+ align-items: center;
1010
+ border-radius: 100%;
1011
+ background-color: var(--krds-color-gray-0);
1012
+ border: 1px solid var(--krds-color-gray-20);
1013
+ }
1014
+ .header:hover {
1015
+ background-color: var(--krds-color-gray-10);
1016
+ border-color: var(--krds-color-gray-30);
1017
+ cursor: pointer;
1018
+ }
1019
+ .header:focus {
1020
+ outline: none;
1021
+ box-shadow: 0 0 0 2px var(--krds-color-gray-0), 0 0 0 4px var(--krds-color-primary-40);
1022
+ }
1023
+ .calendarBody {
1024
+ display: grid;
1025
+ grid-template-rows: auto 1fr;
1026
+ padding: 16px 0;
1027
+ gap: 16px;
1028
+ width: 328px;
1029
+ }
1030
+ .weekdaysContainer {
1031
+ display: grid;
1032
+ grid-template-columns: repeat(7, 1fr);
1033
+ gap: 4px;
1034
+ text-align: center;
1035
+ color: var(--krds-color-gray-90);
1036
+ font-weight: 400;
1037
+ font-size: 15px;
1038
+ line-height: 24px;
1039
+ padding: 0 12px;
1040
+ height: 24px;
1041
+ }
1042
+ .daysContainer {
1043
+ display: grid;
1044
+ grid-template-columns: repeat(7, 1fr);
1045
+ padding: 0 12px;
1046
+ gap: 4px;
1047
+ }
1048
+ .day {
1049
+ display: flex;
1050
+ width: 40px;
1051
+ height: 40px;
1052
+ justify-content: center;
1053
+ align-items: center;
1054
+ padding: 0.5rem;
1055
+ border: none;
1056
+ border-radius: 50%;
1057
+ background: var(--krds-color-secondary-5);
1058
+ color: var(--krds-color-gray-80);
1059
+ cursor: pointer;
1060
+ transition: all 0.2s ease;
1061
+ position: relative;
1062
+ font-size: 17px;
1063
+ line-height: 26px;
1064
+ font-weight: 400;
1065
+ font-family: "pretendard GOV";
1066
+ }
1067
+ .day:hover {
1068
+ background: var(--krds-color-secondary-10);
1069
+ color: var(--krds-color-gray-90);
1070
+ }
1071
+ .day:focus {
1072
+ outline: none;
1073
+ box-shadow: 0 0 0 2px var(--krds-color-gray-0), 0 0 0 4px var(--krds-color-primary-40);
1074
+ }
1075
+ .dayToday::after {
1076
+ content: "";
1077
+ position: absolute;
1078
+ bottom: 3px;
1079
+ left: 50%;
1080
+ transform: translateX(-50%);
1081
+ width: 4px;
1082
+ height: 4px;
1083
+ background-color: var(--krds-color-danger-50);
1084
+ border-radius: 50%;
1085
+ }
1086
+ .daySelected {
1087
+ background: var(--krds-color-secondary-70);
1088
+ color: var(--krds-color-gray-0);
1089
+ }
1090
+ .dayDisabled {
1091
+ color: var(--krds-color-gray-20);
1092
+ background-color: transparent;
1093
+ cursor: default;
1094
+ pointer-events: none;
1095
+ opacity: 0.2;
1096
+ }
1097
+ .calendarFooter {
1098
+ display: flex;
1099
+ justify-content: space-between;
1100
+ align-items: center;
1101
+ padding: 16px 24px;
1102
+ border-bottom-left-radius: 0.75rem;
1103
+ border-bottom-right-radius: 0.75rem;
1104
+ background-color: var(--krds-color-gray-0);
1105
+ border-top: 1px solid var(--krds-color-gray-20);
1106
+ height: 72px;
1107
+ box-sizing: border-box;
1108
+ }
1109
+ .footerButton {
1110
+ display: inline-flex;
1111
+ gap: 0.5rem;
1112
+ }
1113
+ .rangeStart {
1114
+ background: var(--krds-color-secondary-70);
1115
+ color: var(--krds-color-gray-0);
1116
+ border-radius: 50% 0 0 50%;
1117
+ position: relative;
1118
+ box-shadow: 5px 0 0 var(--krds-color-gray-0);
1119
+ }
1120
+ .rangeEnd {
1121
+ background: var(--krds-color-secondary-70);
1122
+ color: var(--krds-color-gray-0);
1123
+ border-radius: 0 50% 50% 0;
1124
+ position: relative;
1125
+ box-shadow: -5px 0 0 var(--krds-color-gray-0);
1126
+ }
1127
+ .rangeMiddle {
1128
+ background: var(--krds-color-gray-0);
1129
+ color: var(--krds-color-gray-90);
1130
+ border-radius: 0;
1131
+ position: relative;
1132
+ box-shadow: -5px 0 0 var(--krds-color-gray-0), 5px 0 0 var(--krds-color-gray-0);
1133
+ }
1134
+ .rangeStartOnly {
1135
+ background: var(--krds-color-secondary-70);
1136
+ color: var(--krds-color-gray-0);
1137
+ border-radius: 50%;
1138
+ position: relative;
1139
+ }
1140
+ .rangeSingle {
1141
+ background: var(--krds-color-secondary-70);
1142
+ color: var(--krds-color-gray-0);
1143
+ border-radius: 50%;
1144
+ position: relative;
1145
+ }
1146
+ .dayOutOfMonth {
1147
+ color: var(--krds-color-gray-90);
1148
+ opacity: 0.7;
1149
+ }
1150
+ .day:hover:not(.rangeStart):not(.rangeEnd):not(.rangeMiddle) {
1151
+ background: var(--krds-color-primary-10);
1152
+ opacity: 0.8;
1153
+ }
1154
+ .rangeStart:hover,
1155
+ .rangeEnd:hover,
1156
+ .rangeStartOnly:hover,
1157
+ .rangeSingle:hover {
1158
+ background: var(--krds-color-secondary-80);
1159
+ }
1160
+ .rangeMiddle:hover {
1161
+ background: var(--krds-color-primary-5);
1162
+ }
1163
+ .rangeStartFirstWeek {
1164
+ border-top-left-radius: 50%;
1165
+ border-top-right-radius: 0;
1166
+ }
1167
+ .rangeStartLastWeek {
1168
+ border-bottom-left-radius: 50%;
1169
+ border-bottom-right-radius: 0;
1170
+ }
1171
+ .rangeEndFirstWeek {
1172
+ border-top-left-radius: 0;
1173
+ border-top-right-radius: 50%;
1174
+ }
1175
+ .rangeEndLastWeek {
1176
+ border-bottom-left-radius: 0;
1177
+ border-bottom-right-radius: 50%;
1178
+ }
1179
+ .rangeMiddleLeftmost {
1180
+ border-top-left-radius: 50%;
1181
+ border-bottom-left-radius: 50%;
1182
+ }
1183
+ .rangeMiddleRightmost {
1184
+ border-top-right-radius: 50%;
1185
+ border-bottom-right-radius: 50%;
1186
+ }
1187
+
1188
+ /* src/components/DatePicker/components/Calendar/YearMonthSelector/YearMonthSelector.module.css */
1189
+ .container {
1190
+ display: flex;
1191
+ gap: 4px;
1192
+ align-items: center;
1193
+ justify-content: center;
1194
+ width: 184px;
1195
+ }
1196
+ .selector {
1197
+ position: relative;
1198
+ }
1199
+ .selectorButton {
1200
+ display: flex;
1201
+ align-items: center;
1202
+ gap: 4px;
1203
+ padding: 0 8px;
1204
+ background: transparent;
1205
+ border: none;
1206
+ border-radius: 6px;
1207
+ font-size: 14px;
1208
+ font-weight: 500;
1209
+ color: var(--krds-color-gray-90);
1210
+ cursor: pointer;
1211
+ transition: all 0.2s ease;
1212
+ min-width: 70px;
1213
+ justify-content: space-between;
1214
+ font-size: 19px;
1215
+ font-weight: 700;
1216
+ line-height: 30px;
1217
+ font-family: "pretendard GOV";
1218
+ }
1219
+ .selectorButton:hover {
1220
+ background: var(--krds-color-primary-10);
1221
+ border-color: var(--krds-color-primary-10);
1222
+ opacity: 0.9;
1223
+ }
1224
+ .selectorButton:focus {
1225
+ outline: none;
1226
+ box-shadow: 0 0 0 2px var(--krds-color-gray-0), 0 0 0 4px var(--krds-color-primary-40);
1227
+ }
1228
+ .dropdown {
1229
+ position: absolute;
1230
+ top: 100%;
1231
+ left: 0;
1232
+ right: 0;
1233
+ background: var(--krds-color-gray-0);
1234
+ border: none;
1235
+ border-radius: 6px;
1236
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
1237
+ z-index: 20;
1238
+ max-height: 200px;
1239
+ overflow-y: auto;
1240
+ margin-top: 4px;
1241
+ opacity: 0;
1242
+ transform: translateY(-5px);
1243
+ transition: opacity 0.1s ease, transform 0.1s ease;
1244
+ pointer-events: none;
1245
+ }
1246
+ .dropdown.open {
1247
+ opacity: 1;
1248
+ transform: translateY(0);
1249
+ pointer-events: auto;
1250
+ }
1251
+ .option {
1252
+ display: block;
1253
+ width: 100%;
1254
+ padding: 8px 12px;
1255
+ background: none;
1256
+ border: none;
1257
+ text-align: left;
1258
+ font-size: 14px;
1259
+ color: var(--krds-color-gray-90);
1260
+ cursor: pointer;
1261
+ transition: background-color 0.2s ease;
1262
+ font-family: "pretendard GOV";
1263
+ }
1264
+ .option:hover {
1265
+ background: var(--krds-color-primary-5);
1266
+ }
1267
+ .option.selected {
1268
+ background: var(--krds-color-primary-5);
1269
+ color: var(--krds-color-primary-50);
1270
+ font-weight: 600;
1271
+ }
1272
+ .option:first-child {
1273
+ border-top-left-radius: 6px;
1274
+ border-top-right-radius: 6px;
1275
+ }
1276
+ .option:last-child {
1277
+ border-bottom-left-radius: 6px;
1278
+ border-bottom-right-radius: 6px;
1279
+ }
1280
+ .dropdown::-webkit-scrollbar {
1281
+ width: 6px;
1282
+ }
1283
+ .dropdown::-webkit-scrollbar-track {
1284
+ background: var(--krds-color-secondary-5);
1285
+ border-radius: 3px;
1286
+ }
1287
+ .dropdown::-webkit-scrollbar-thumb {
1288
+ background-color: var(--krds-color-secondary-10);
1289
+ border-radius: 2px;
1290
+ }
1291
+ .dropdown::-webkit-scrollbar-thumb:hover {
1292
+ background-color: var(--krds-color-secondary-20);
1293
+ }
1294
+
1295
+ /* src/components/DatePicker/DatePicker.module.css */
1296
+ .datePicker {
1297
+ display: flex;
1298
+ flex-direction: column;
1299
+ }
1300
+ .titleWrapper {
1301
+ gap: 0.25rem;
1302
+ align-items: center;
1303
+ width: fit-content;
1304
+ line-height: 24px;
1305
+ flex-shrink: 0;
1306
+ }
1307
+ .horizontal {
1308
+ flex-direction: row;
1309
+ align-items: flex-start;
1310
+ white-space: nowrap;
1311
+ }
1312
+ .wrapper {
1313
+ gap: 0.25rem;
1314
+ justify-content: center;
1315
+ align-items: center;
1316
+ width: 100%;
1317
+ transition: all 0.2s ease;
1318
+ word-break: keep-all;
1319
+ }
1320
+ .iconButton {
1321
+ background: none;
1322
+ border: none;
1323
+ cursor: pointer;
1324
+ padding: 0;
1325
+ transition: all 0.2s ease;
1326
+ width: calc(var(--input-height, 56px) * 0.4);
1327
+ height: calc(var(--input-height, 56px) * 0.4);
1328
+ min-width: 20px;
1329
+ min-height: 20px;
1330
+ max-width: 32px;
1331
+ max-height: 32px;
1332
+ display: flex;
1333
+ align-items: center;
1334
+ justify-content: center;
1335
+ border-radius: 50%;
1336
+ z-index: 1;
1337
+ }
1338
+ .iconButton:hover {
1339
+ background-color: var(--krds-color-gray-10);
1340
+ opacity: 0.9;
1341
+ }
1342
+ .iconButton:focus {
1343
+ outline: none;
1344
+ box-shadow: 0 0 0 2px var(--krds-color-primary-50);
1345
+ }
1346
+ .iconButton:disabled {
1347
+ cursor: default;
1348
+ background-color: var(--krds-color-gray-20);
1349
+ opacity: 0.5;
1350
+ }
1351
+ .icon {
1352
+ display: block;
1353
+ }
1354
+ .calendarDropdown {
1355
+ position: absolute;
1356
+ right: 0;
1357
+ z-index: 10;
1358
+ opacity: 0;
1359
+ transform: translateY(-5px);
1360
+ transition: all 0.2s ease;
1361
+ pointer-events: none;
1362
+ display: none;
1363
+ }
1364
+ .calendarDropdown.open {
1365
+ display: block;
1366
+ opacity: 1;
1367
+ pointer-events: auto;
1368
+ }
1369
+ .calendarDropdown.bottom {
1370
+ top: 100%;
1371
+ transform: translateY(-5px);
1372
+ }
1373
+ .calendarDropdown.bottom.open {
1374
+ transform: translateY(0);
1375
+ }
1376
+ .calendarDropdown.top {
1377
+ bottom: 100%;
1378
+ transform: translateY(5px);
1379
+ }
1380
+ .calendarDropdown.top.open {
1381
+ transform: translateY(0);
1382
+ }
1383
+ .rangeInputContainer {
1384
+ display: flex;
1385
+ gap: 8px;
1386
+ flex: 1;
1387
+ align-items: flex-start;
1388
+ position: relative;
1389
+ }
1390
+ .rangeInput {
1391
+ flex: 1;
1392
+ }
1393
+ .rangeSeparator {
1394
+ color: var(--krds-color-gray-60);
1395
+ font-weight: 500;
1396
+ flex-shrink: 0;
1397
+ height: var(--input-height, 56px);
1398
+ display: flex;
1399
+ align-items: center;
1400
+ }
1401
+
1402
+ /* src/components/Detail/Detail.module.css */
1403
+ .detail {
1404
+ margin: 0;
1405
+ }
1406
+ .size_l {
1407
+ font-size: 1.125rem;
1408
+ }
1409
+ .size_m {
1410
+ font-size: 1rem;
1411
+ }
1412
+ .size_s {
1413
+ font-size: 0.875rem;
1414
+ }
1415
+ .weight_regular {
1416
+ font-weight: 400;
1417
+ }
1418
+ .weight_bold {
1419
+ font-weight: 700;
1420
+ }
1421
+
1422
+ /* src/components/Display/Display.module.css */
1423
+ .display {
1424
+ margin: 0;
1425
+ }
1426
+ .size_l {
1427
+ font-size: 3.75rem;
1428
+ }
1429
+ .size_m {
1430
+ font-size: 2.75rem;
1431
+ }
1432
+ .size_s {
1433
+ font-size: 2.25rem;
1434
+ }
1435
+ .weight_bold {
1436
+ font-weight: 700;
1437
+ }
1438
+ @media (max-width: 600px) {
1439
+ .size_l {
1440
+ font-size: 2.75rem;
1441
+ }
1442
+ .size_m {
1443
+ font-size: 2rem;
1444
+ }
1445
+ .size_s {
1446
+ font-size: 1.75rem;
1447
+ }
1448
+ }
1449
+
1450
+ /* src/components/Heading/Heading.module.css */
1451
+ .heading {
1452
+ margin: 0;
1453
+ font-weight: 700;
1454
+ }
1455
+ .h1 {
1456
+ font-size: 40px;
1457
+ line-height: 60px;
1458
+ }
1459
+ .h2 {
1460
+ font-size: 32px;
1461
+ line-height: 48px;
1462
+ }
1463
+ .h3 {
1464
+ font-size: 24px;
1465
+ line-height: 36px;
1466
+ }
1467
+ .h4 {
1468
+ font-size: 20px;
1469
+ line-height: 30px;
1470
+ }
1471
+ .h5 {
1472
+ font-size: 16px;
1473
+ line-height: 26px;
1474
+ }
1475
+ @media (max-width: 600px) {
1476
+ .h1 {
1477
+ font-size: 32px;
1478
+ line-height: 48px;
1479
+ }
1480
+ .h2 {
1481
+ font-size: 24px;
1482
+ line-height: 36px;
1483
+ }
1484
+ .h3 {
1485
+ font-size: 22px;
1486
+ line-height: 34px;
1487
+ }
1488
+ .h4 {
1489
+ font-size: 19px;
1490
+ line-height: 30px;
1491
+ }
1492
+ .h5 {
1493
+ font-size: 17px;
1494
+ line-height: 26px;
1495
+ }
1496
+ }
1497
+
1498
+ /* src/components/ErrorPage/ErrorPage.module.css */
1499
+ .ErrorPage {
1500
+ border-radius: 16px;
1501
+ background-color: var(--krds-color-gray-0);
1502
+ padding: 24px;
1503
+ display: flex;
1504
+ flex-direction: column;
1505
+ align-items: center;
1506
+ justify-content: center;
1507
+ text-align: center;
1508
+ color: var(--krds-color-gray-80);
1509
+ font-size: 16px;
1510
+ line-height: 24px;
1511
+ gap: 40px;
1512
+ }
1513
+ .ErrorPageContent {
1514
+ display: grid;
1515
+ gap: 8px;
1516
+ text-align: center;
1517
+ }
1518
+
1519
+ /* src/components/FileButtonUpload/FileButtonUpload.module.css */
1520
+ .wrapper {
1521
+ display: flex;
1522
+ flex-direction: column;
1523
+ }
1524
+ .uploadButtonWrapper {
1525
+ display: flex;
1526
+ align-items: center;
1527
+ gap: 12px;
1528
+ }
1529
+ .descriptionWrapper {
1530
+ display: flex;
1531
+ gap: 4px;
1532
+ align-items: center;
1533
+ padding-top: 0.5rem;
1534
+ }
1535
+ .descriptionList {
1536
+ display: flex;
1537
+ flex-direction: column;
1538
+ gap: 4px;
1539
+ }
1540
+ .description {
1541
+ font-size: 13px;
1542
+ color: var(--krds-color-gray-70);
1543
+ line-height: 20px;
1544
+ margin: 0 !important;
1545
+ }
1546
+ .hiddenInput {
1547
+ display: none;
1548
+ }
1549
+ .fileList {
1550
+ margin: 0;
1551
+ list-style: none;
1552
+ padding: 8px 0;
1553
+ display: flex;
1554
+ flex-direction: column;
1555
+ gap: 8px;
1556
+ margin-top: 0.5rem;
1557
+ }
1558
+ .fileItem {
1559
+ display: flex;
1560
+ align-items: center;
1561
+ gap: 2px;
1562
+ }
1563
+ .removeButton {
1564
+ background: none;
1565
+ border: none;
1566
+ font-size: 16px;
1567
+ color: var(--krds-color-gray-60);
1568
+ cursor: pointer;
1569
+ }
1570
+ .deleteButton {
1571
+ background: none;
1572
+ border: none;
1573
+ cursor: pointer;
1574
+ padding: 4px;
1575
+ display: flex;
1576
+ align-items: center;
1577
+ justify-content: center;
1578
+ }
1579
+ .deleteButton:hover {
1580
+ opacity: 0.7;
1581
+ }
1582
+ .deleteButton:focus {
1583
+ outline: 2px solid var(--krds-color-primary-50);
1584
+ outline-offset: 2px;
1585
+ border-radius: 2px;
1586
+ }
1587
+
1588
+ /* src/components/FileUpload/DakFileUpload.module.css */
1589
+ .container {
1590
+ width: 100%;
1591
+ font-family:
1592
+ -apple-system,
1593
+ BlinkMacSystemFont,
1594
+ "Segoe UI",
1595
+ Roboto,
1596
+ sans-serif;
1597
+ }
1598
+ .uploadArea {
1599
+ border: 1px solid var(--krds-color-gray-20);
1600
+ border-radius: 8px;
1601
+ padding: 24px;
1602
+ text-align: center;
1603
+ cursor: pointer;
1604
+ transition: all 0.3s ease;
1605
+ background-color: #fafafa;
1606
+ min-height: 120px;
1607
+ display: flex;
1608
+ flex-direction: column;
1609
+ justify-content: center;
1610
+ align-items: center;
1611
+ gap: 8px;
1612
+ margin-bottom: 8px;
1613
+ }
1614
+ .uploadArea:hover {
1615
+ border-color: #3b82f6;
1616
+ background-color: #f0f9ff;
1617
+ }
1618
+ .uploadArea.dragActive {
1619
+ border-color: #3b82f6;
1620
+ background-color: #eff6ff;
1621
+ border-style: solid;
1622
+ }
1623
+ .uploadArea.disabled {
1624
+ cursor: not-allowed;
1625
+ opacity: 0.6;
1626
+ background-color: #f5f5f5;
1627
+ }
1628
+ .uploadArea.disabled:hover {
1629
+ border-color: #d1d5db;
1630
+ background-color: #f5f5f5;
1631
+ }
1632
+ .uploadText {
1633
+ font-weight: 400;
1634
+ font-size: 15px;
1635
+ color: var(--krds-color-gray-70);
1636
+ line-height: 24px;
1637
+ }
1638
+ .infoLabel {
1639
+ font-weight: 400;
1640
+ font-size: 17px;
1641
+ color: var(--krds-color-gray-70);
1642
+ line-height: 26px;
1643
+ }
1644
+ .hiddenInput {
1645
+ display: none;
1646
+ }
1647
+ .fileCounter {
1648
+ height: 40px;
1649
+ font-size: 17px;
1650
+ font-weight: 700;
1651
+ color: var(--krds-color-gray-70);
1652
+ display: flex;
1653
+ align-items: center;
1654
+ justify-content: flex-start;
1655
+ }
1656
+ .fileCount {
1657
+ color: var(--krds-color-primary-60);
1658
+ }
1659
+ .fileList {
1660
+ margin-top: 8px;
1661
+ }
1662
+ .fileItem {
1663
+ display: flex;
1664
+ align-items: center;
1665
+ justify-content: space-between;
1666
+ padding: 16px;
1667
+ border: 1px solid #e5e7eb;
1668
+ border-radius: 6px;
1669
+ margin-bottom: 8px;
1670
+ background-color: white;
1671
+ transition: all 0.2s ease;
1672
+ }
1673
+ .fileInfo {
1674
+ display: flex;
1675
+ align-items: center;
1676
+ gap: 4px;
1677
+ }
1678
+ .fileName {
1679
+ font-size: 17px;
1680
+ font-weight: 400;
1681
+ line-height: 26px;
1682
+ color: var(--krds-color-gray-90);
1683
+ word-break: break-all;
1684
+ }
1685
+ .fileName.downloadable {
1686
+ cursor: pointer;
1687
+ }
1688
+ .fileName.downloadable:hover {
1689
+ text-decoration: underline;
1690
+ color: #3b82f6;
1691
+ }
1692
+ .fileSize {
1693
+ font-size: 17px;
1694
+ font-weight: 400;
1695
+ line-height: 26px;
1696
+ color: var(--krds-color-gray-90);
1697
+ }
1698
+ .deleteButton {
1699
+ display: flex;
1700
+ align-items: center;
1701
+ color: var(--krds-color-gray-90);
1702
+ font-size: 1.063rem;
1703
+ cursor: pointer;
1704
+ min-height: unset;
1705
+ min-width: unset;
1706
+ padding: 0;
1707
+ }
1708
+ .deleteButton:hover {
1709
+ color: var(--krds-color-gray-90) !important;
1710
+ }
1711
+ .deleteButton:disabled {
1712
+ opacity: 0.5;
1713
+ cursor: not-allowed;
1714
+ }
1715
+ .preview {
1716
+ width: 40px;
1717
+ height: 40px;
1718
+ object-fit: cover;
1719
+ border-radius: 4px;
1720
+ margin-right: 12px;
1721
+ border: 1px solid #e5e7eb;
1722
+ }
1723
+ .errors {
1724
+ margin-top: 8px;
1725
+ }
1726
+ .error {
1727
+ color: #dc2626;
1728
+ font-size: 14px;
1729
+ padding: 8px 12px;
1730
+ background-color: #fef2f2;
1731
+ border: 1px solid #fecaca;
1732
+ border-radius: 4px;
1733
+ margin-bottom: 4px;
1734
+ }
1735
+ .limitations {
1736
+ margin-top: 8px;
1737
+ padding: 8px 12px;
1738
+ background-color: #f0f9ff;
1739
+ border-radius: 4px;
1740
+ font-size: 12px;
1741
+ color: #1e40af;
1742
+ }
1743
+ .filePreview {
1744
+ display: flex;
1745
+ align-items: center;
1746
+ justify-self: start;
1747
+ }
1748
+
1749
+ /* src/components/FileUpload/FileItem.module.css */
1750
+ .fileItem {
1751
+ padding: 12px;
1752
+ border: 1px solid var(--krds-color-gray-20);
1753
+ border-radius: 8px;
1754
+ background-color: var(--krds-color-gray-0);
1755
+ display: flex;
1756
+ flex-direction: column;
1757
+ gap: 1rem;
1758
+ max-width: 71rem;
1759
+ width: 100%;
1760
+ box-sizing: border-box;
1761
+ }
1762
+ .fileItemHeader {
1763
+ display: flex;
1764
+ justify-content: space-between;
1765
+ align-items: center;
1766
+ }
1767
+ .fileNameLabel {
1768
+ font-size: 1.063rem;
1769
+ width: 100%;
1770
+ font-weight: 500;
1771
+ color: var(--krds-color-gray-90);
1772
+ }
1773
+ .error {
1774
+ border-color: var(--krds-color-danger-50);
1775
+ background-color: var(--krds-color-danger-5);
1776
+ }
1777
+ .errorMessage {
1778
+ display: flex;
1779
+ align-items: flex-start;
1780
+ gap: 6px;
1781
+ color: var(--krds-color-danger-60);
1782
+ border-top: 1px solid var(--krds-color-gray-40);
1783
+ padding-top: 1rem;
1784
+ }
1785
+ @keyframes spin {
1786
+ to {
1787
+ transform: rotate(360deg);
1788
+ }
1789
+ }
1790
+ .deleteButton {
1791
+ display: flex;
1792
+ align-items: center;
1793
+ justify-content: end;
1794
+ color: var(--krds-color-gray-90);
1795
+ font-size: 1.063rem;
1796
+ cursor: pointer;
1797
+ min-height: unset;
1798
+ min-width: unset;
1799
+ padding: 0;
1800
+ }
1801
+ .viewButton {
1802
+ min-height: unset;
1803
+ min-width: unset;
1804
+ padding: 0 !important;
1805
+ height: fit-content;
1806
+ }
1807
+ .viewButton:hover {
1808
+ color: var(--krds-color-gray-90) !important;
1809
+ }
1810
+ .deleteButton:hover {
1811
+ color: var(--krds-color-gray-90) !important;
1812
+ }
1813
+ .errorMessageLabel {
1814
+ font-size: 1.063rem !important;
1815
+ font-weight: 400 !important;
1816
+ color: var(--krds-color-danger-60) !important;
1817
+ line-height: 1.625rem !important;
1818
+ }
1819
+ .buttonGroup {
1820
+ display: flex;
1821
+ gap: 0.875rem;
1822
+ align-items: center;
1823
+ justify-content: flex-end;
1824
+ }
1825
+
1826
+ /* src/components/FileUpload/FileUpload.module.css */
1827
+ .container {
1828
+ width: 100%;
1829
+ background-color: var(--krds-color-gray-0);
1830
+ box-sizing: border-box;
1831
+ }
1832
+ .title {
1833
+ font-size: 1.5rem;
1834
+ font-weight: 700;
1835
+ line-height: 2.25rem;
1836
+ margin: 0 !important;
1837
+ }
1838
+ .description {
1839
+ color: var(--krds-color-gray-70);
1840
+ margin-bottom: 1rem;
1841
+ font-size: 1.063rem;
1842
+ }
1843
+ .subDescription {
1844
+ font-size: 0.938rem;
1845
+ color: var(--krds-color-gray-70);
1846
+ text-align: center;
1847
+ margin: 0 !important;
1848
+ }
1849
+ .dropZone {
1850
+ border: 2px solid var(--krds-color-gray-20);
1851
+ background-color: var(--krds-color-gray-5);
1852
+ border-radius: 12px;
1853
+ padding: 2rem;
1854
+ text-align: center;
1855
+ cursor: pointer;
1856
+ transition: border-color 0.2s ease;
1857
+ display: flex;
1858
+ flex-direction: column;
1859
+ gap: 1rem;
1860
+ align-items: center;
1861
+ box-sizing: border-box;
1862
+ width: 100%;
1863
+ }
1864
+ .infoLabel {
1865
+ font-weight: 400;
1866
+ font-size: 1.188rem;
1867
+ color: var(--krds-color-gray-70);
1868
+ line-height: 1.875rem;
1869
+ }
1870
+ .fileList {
1871
+ display: flex;
1872
+ flex-direction: column;
1873
+ margin-top: 1rem;
1874
+ gap: 1rem;
1875
+ width: 100%;
1876
+ box-sizing: border-box;
1877
+ }
1878
+ .fileItemHeader {
1879
+ width: 100%;
1880
+ display: flex;
1881
+ justify-content: space-between;
1882
+ align-items: center;
1883
+ }
1884
+ .fileItem {
1885
+ display: flex;
1886
+ flex-direction: column;
1887
+ align-items: center;
1888
+ justify-content: space-between;
1889
+ border: 1px solid var(--krds-color-gray-30);
1890
+ padding: 1rem;
1891
+ border-radius: 8px;
1892
+ gap: 0.5rem;
1893
+ }
1894
+ .fileListHeader {
1895
+ display: flex;
1896
+ align-items: center;
1897
+ }
1898
+ .error {
1899
+ border: 2px solid var(--krds-color-danger-60);
1900
+ background-color: var(--krds-color-danger-5);
1901
+ }
1902
+ .errorMessage {
1903
+ width: 100%;
1904
+ padding-top: 1rem;
1905
+ background-color: var(--krds-color-danger-5);
1906
+ border-top: 1px solid var(--krds-color-gray-40);
1907
+ display: flex;
1908
+ align-items: flex-start;
1909
+ gap: 0.5rem;
1910
+ }
1911
+ .errorMessageLabel {
1912
+ font-size: 1.063rem !important;
1913
+ font-weight: 400 !important;
1914
+ color: var(--krds-color-danger-60) !important;
1915
+ line-height: 1.625rem !important;
1916
+ }
1917
+ .deleteButton {
1918
+ display: flex;
1919
+ align-items: center;
1920
+ color: var(--krds-color-gray-90);
1921
+ font-size: 1.063rem;
1922
+ cursor: pointer;
1923
+ min-height: unset;
1924
+ min-width: unset;
1925
+ padding: 0;
1926
+ }
1927
+ .deleteButton:hover {
1928
+ color: var(--krds-color-gray-90) !important;
1929
+ }
1930
+ .hiddenInput {
1931
+ display: none;
1932
+ }
1933
+ .countLabel {
1934
+ margin: 0 !important;
1935
+ }
1936
+ .currentLabel {
1937
+ color: var(--krds-color-primary-60);
1938
+ font-weight: 700;
1939
+ font-size: 1.063rem;
1940
+ }
1941
+ .totalLabel {
1942
+ color: var(--krds-color-gray-90);
1943
+ font-weight: 700;
1944
+ }
1945
+ .compactFileLabel {
1946
+ padding: 16px;
1947
+ border: 1px solid var(--krds-color-gray-20);
1948
+ border-radius: 8px;
1949
+ font-size: 1.063rem;
1950
+ font-weight: 500;
1951
+ color: var(--krds-color-gray-90);
1952
+ box-sizing: border-box;
1953
+ margin: 0;
1954
+ }
1955
+ @media screen and (max-width: 768px) {
1956
+ .fileNameLabel {
1957
+ max-width: 12.25rem !important;
1958
+ }
1959
+ }
1960
+
1961
+ /* src/components/Modal/Button/Button.module.css */
1962
+ .buttonWrap {
1963
+ text-align: right;
1964
+ display: flex;
1965
+ justify-content: flex-end;
1966
+ }
1967
+ .buttonWrap button + button {
1968
+ margin-left: 10px;
1969
+ }
1970
+ .buttonWrapSmall {
1971
+ padding: 0.625rem 1rem 1rem;
1972
+ }
1973
+ .buttonWrapMedium {
1974
+ padding: 1rem 1.25rem;
1975
+ }
1976
+ .buttonWrapLarge {
1977
+ padding: 1.5rem 2rem;
1978
+ }
1979
+ .buttonWrapDialog {
1980
+ display: flex;
1981
+ justify-content: flex-end;
1982
+ align-items: flex-end;
1983
+ width: 100%;
1984
+ height: 88px;
1985
+ }
1986
+ .buttonWrap .dangerousButton {
1987
+ margin: 0;
1988
+ }
1989
+
1990
+ /* src/components/Modal/BackDrop/Backdrop.module.css */
1991
+ .dimmedBackdrop {
1992
+ position: absolute;
1993
+ width: 100vw;
1994
+ height: 100vh;
1995
+ background-color: rgba(0, 0, 0, 0.4);
1996
+ display: flex;
1997
+ opacity: 0;
1998
+ align-items: center;
1999
+ justify-content: center;
2000
+ }
2001
+ .clearBackdrop {
2002
+ position: absolute;
2003
+ width: 100vw;
2004
+ height: 100vh;
2005
+ display: flex;
2006
+ opacity: 0;
2007
+ align-items: center;
2008
+ justify-content: center;
2009
+ }
2010
+ .contentWrapper:focus {
2011
+ outline: none;
2012
+ }
2013
+
2014
+ /* src/components/Modal/Container/Container.module.css */
2015
+ .modalContainer {
2016
+ display: flex;
2017
+ flex-direction: column;
2018
+ background-color: var(--krds-color-gray-0);
2019
+ box-shadow: 0 4px 16px rgba(0, 0, 0, 0.048);
2020
+ border-radius: 0.75rem;
2021
+ max-height: calc(100vh - 60px);
2022
+ max-width: calc(100vw - 60px);
2023
+ min-width: 25rem;
2024
+ }
2025
+ .modalContainerLarge {
2026
+ width: 75rem;
2027
+ }
2028
+ .modalContainerMedium {
2029
+ width: 50rem;
2030
+ }
2031
+ .modalContainerSmall {
2032
+ width: 25rem;
2033
+ }
2034
+ .modalContainerDialog {
2035
+ margin: 0 auto;
2036
+ padding: 24px;
2037
+ border-radius: 12px;
2038
+ display: grid;
2039
+ box-shadow: var(--shadow-bold);
2040
+ background-color: var(--krds-color-gray-0);
2041
+ box-sizing: border-box !important;
2042
+ }
2043
+ .modalCloseContainer {
2044
+ display: flex;
2045
+ justify-content: flex-end;
2046
+ align-items: center;
2047
+ right: 0;
2048
+ top: 0;
2049
+ width: 100%;
2050
+ height: 10px;
2051
+ order: -1;
2052
+ z-index: 1;
2053
+ }
2054
+ .buttonWrapSmall {
2055
+ padding: 1.5rem 1rem 0 0;
2056
+ }
2057
+ .buttonWrapMedium {
2058
+ padding: 1.5rem 1.25rem 0 0;
2059
+ }
2060
+ .buttonWrapLarge {
2061
+ padding: 2rem 1rem 0 0;
2062
+ }
2063
+ .modalCloseButton {
2064
+ display: flex;
2065
+ align-items: center;
2066
+ justify-content: center;
2067
+ width: 20px;
2068
+ height: 20px;
2069
+ border: none;
2070
+ cursor: pointer;
2071
+ padding: 0;
2072
+ transition: all 0.2s ease-in-out;
2073
+ border-radius: 1rem;
2074
+ background: transparent;
2075
+ }
2076
+ .modalCloseButton svg {
2077
+ vertical-align: middle;
2078
+ }
2079
+ .modalCloseButton:hover {
2080
+ color: var(--krds-color-gray-60);
2081
+ background-color: var(--krds-color-gray-10);
2082
+ opacity: 0.8;
2083
+ }
2084
+ .modalCloseButton:focus-visible {
2085
+ outline: none;
2086
+ box-shadow: 0 0 0 1px var(--krds-color-gray-0), 0 0 0 3px var(--krds-color-primary-40);
2087
+ }
2088
+
2089
+ /* src/components/Modal/Content/Content.module.css */
2090
+ .modalContent {
2091
+ text-align: left;
2092
+ display: grid;
2093
+ overflow: auto;
2094
+ scrollbar-gutter: stable;
2095
+ }
2096
+ .modalContent:focus-visible {
2097
+ outline: none;
2098
+ box-shadow: 0 0 0 2px var(--krds-color-gray-0), 0 0 0 4px var(--krds-color-primary-40);
2099
+ }
2100
+ .modalContentSmall {
2101
+ margin: 0 1rem;
2102
+ }
2103
+ .modalContentMedium {
2104
+ margin: 0 1.25rem;
2105
+ padding-right: 8px;
2106
+ }
2107
+ .modalContentLarge {
2108
+ margin: 0 1rem 0 1.5rem;
2109
+ padding-right: 8px;
2110
+ }
2111
+ .modalContentDialog {
2112
+ position: relative;
2113
+ width: 100%;
2114
+ display: flex;
2115
+ text-align: left;
2116
+ font-weight: 400;
2117
+ font-size: 17px;
2118
+ line-height: 26px;
2119
+ white-space: break-spaces;
2120
+ }
2121
+ .dialogIcon {
2122
+ display: inherit;
2123
+ text-align: left;
2124
+ }
2125
+ .modalContent::-webkit-scrollbar {
2126
+ width: 8px;
2127
+ }
2128
+ .modalContent::-webkit-scrollbar-track {
2129
+ background: var(--krds-color-secondary-5);
2130
+ }
2131
+ .modalContent::-webkit-scrollbar-thumb {
2132
+ background-color: var(--krds-color-secondary-10);
2133
+ border-radius: 2px;
2134
+ }
2135
+ .modalContent::-webkit-scrollbar-thumb:hover {
2136
+ background-color: var(--krds-color-secondary-20);
2137
+ }
2138
+
2139
+ /* src/components/Modal/Header/Header.module.css */
2140
+ .modalHeader {
2141
+ display: grid;
2142
+ gap: 0.5rem 0.25rem;
2143
+ grid-template-columns: auto auto;
2144
+ align-items: center;
2145
+ justify-content: space-between;
2146
+ }
2147
+ .modalHeaderSmall {
2148
+ grid-template-columns: auto 24px;
2149
+ padding: 1rem 16px 8px 1rem;
2150
+ }
2151
+ .modalHeaderMedium {
2152
+ padding: 19px 16px 13px 1.25rem;
2153
+ }
2154
+ .modalHeaderLarge {
2155
+ padding: 19px 1.25rem 19px 1.5rem;
2156
+ }
2157
+ .modalHeaderTitle {
2158
+ text-align: left;
2159
+ margin: 0;
2160
+ display: flex;
2161
+ align-items: center;
2162
+ padding: 0;
2163
+ font-weight: 700;
2164
+ }
2165
+ .modalHeaderTitle > span {
2166
+ margin-right: 2px;
2167
+ margin-left: -4px;
2168
+ vertical-align: middle;
2169
+ display: inline-block;
2170
+ }
2171
+ .modalHeaderTitle > span svg {
2172
+ vertical-align: middle;
2173
+ }
2174
+ .modalHeaderTitle > div {
2175
+ display: inline;
2176
+ vertical-align: middle;
2177
+ margin: 0;
2178
+ }
2179
+ .modalHeaderSmallTitle {
2180
+ line-height: 2.25rem;
2181
+ }
2182
+ .modalHeaderMediumTitle {
2183
+ line-height: 2.25rem;
2184
+ }
2185
+ .modalHeaderLargeTitle {
2186
+ line-height: 2.25rem;
2187
+ }
2188
+ .modalHeaderSubTitle {
2189
+ font-size: 0.875rem;
2190
+ color: var(--krds-color-gray-50);
2191
+ text-align: left;
2192
+ white-space: break-spaces;
2193
+ font-weight: 500;
2194
+ margin: 0;
2195
+ grid-column: 1/3;
2196
+ }
2197
+ .modalHeaderRight {
2198
+ display: flex;
2199
+ align-items: center;
2200
+ gap: 0.5rem;
2201
+ }
2202
+ .modalHeaderExtra {
2203
+ display: flex;
2204
+ align-items: center;
2205
+ gap: 0.5rem;
2206
+ }
2207
+ .dialogTitle {
2208
+ font-weight: 700;
2209
+ font-size: 24px;
2210
+ line-height: 36px;
2211
+ }
2212
+
2213
+ /* src/components/Modal/service/Dialog.module.css */
2214
+ .dialogCloseIcon {
2215
+ display: flex;
2216
+ justify-content: flex-end;
2217
+ align-items: center;
2218
+ width: 100%;
2219
+ }
2220
+ .dialogBody {
2221
+ width: 100%;
2222
+ padding: 8px 16px;
2223
+ box-sizing: border-box;
2224
+ display: flex;
2225
+ flex-direction: column;
2226
+ }
2227
+ .defaultDialogButton {
2228
+ display: flex;
2229
+ gap: 16px;
2230
+ width: 164px;
2231
+ }
2232
+
2233
+ /* src/components/Link/Link.module.css */
2234
+ .link {
2235
+ color: var(--krds-color-primary-50);
2236
+ text-decoration: underline;
2237
+ cursor: pointer;
2238
+ font-weight: 400;
2239
+ }
2240
+ .size_s {
2241
+ font-size: 15px;
2242
+ line-height: 24px;
2243
+ }
2244
+ .size_m {
2245
+ font-size: 17px;
2246
+ line-height: 26px;
2247
+ }
2248
+ .size_l {
2249
+ font-size: 19px;
2250
+ line-height: 30px;
2251
+ }
2252
+ .weight_regular {
2253
+ font-weight: 400;
2254
+ }
2255
+ .weight_bold {
2256
+ font-weight: 700;
2257
+ }
2258
+
2259
+ /* src/components/LinkButton/LinkButton.module.css */
2260
+ .linkButton {
2261
+ width: fit-content;
2262
+ height: 40px;
2263
+ text-decoration: underline;
2264
+ align-items: center;
2265
+ justify-content: center;
2266
+ border-radius: 4px;
2267
+ outline: none;
2268
+ transition: color 0.2s, background 0.2s;
2269
+ white-space: nowrap;
2270
+ }
2271
+ .linkButton .icon {
2272
+ text-decoration: none;
2273
+ display: inline-block;
2274
+ margin-left: 0.1rem;
2275
+ vertical-align: middle;
2276
+ align-items: center;
2277
+ }
2278
+ .linkButtonAccent {
2279
+ font-weight: 700;
2280
+ }
2281
+ .linkButtonDefault {
2282
+ font-weight: 400;
2283
+ }
2284
+ .linkButton:hover {
2285
+ color: var(--krds-color-primary-60);
2286
+ }
2287
+ .linkButton:focus {
2288
+ color: var(--krds-color-primary-60);
2289
+ }
2290
+ .linkButtonSmall {
2291
+ font-size: 0.875rem;
2292
+ padding: 0.25rem 0.5rem;
2293
+ }
2294
+ .linkButtonMedium {
2295
+ font-size: 1rem;
2296
+ padding: 0.5rem 0.75rem;
2297
+ }
2298
+ .linkButtonLarge {
2299
+ font-size: 1.125rem;
2300
+ padding: 0.75rem 1rem;
2301
+ }
2302
+
2303
+ /* src/components/LoadingPage/LoadingPage.module.css */
2304
+ .loadingPageContent {
2305
+ font-weight: 400;
2306
+ color: var(--krds-color-gray-70);
2307
+ font-size: 20px;
2308
+ line-height: 30px;
2309
+ }
2310
+ .loadingPageContainer {
2311
+ display: flex;
2312
+ height: 100%;
2313
+ width: 100%;
2314
+ flex-direction: column;
2315
+ align-items: center;
2316
+ justify-content: center;
2317
+ gap: 1rem;
2318
+ }
2319
+
2320
+ /* src/components/MScrollTab/MScrollTab.module.css */
2321
+ .wrapper {
2322
+ display: flex;
2323
+ align-items: center;
2324
+ position: relative;
2325
+ }
2326
+ .scrollContainer {
2327
+ display: flex;
2328
+ flex: 1;
2329
+ justify-content: flex-start;
2330
+ overflow-x: auto;
2331
+ overflow-y: visible;
2332
+ padding: 4px;
2333
+ -ms-overflow-style: none;
2334
+ scrollbar-width: none;
2335
+ }
2336
+ .scrollContainer::-webkit-scrollbar {
2337
+ display: none;
2338
+ }
2339
+ .overlayLeft,
2340
+ .overlayRight {
2341
+ z-index: 10;
2342
+ display: flex;
2343
+ position: absolute;
2344
+ height: 100%;
2345
+ top: 0;
2346
+ bottom: 0;
2347
+ }
2348
+ .overlayLeft {
2349
+ left: 0;
2350
+ }
2351
+ .overlayRight {
2352
+ right: 0;
2353
+ }
2354
+ .innerLeft,
2355
+ .innerRight {
2356
+ display: flex;
2357
+ align-items: center;
2358
+ height: 100%;
2359
+ background-color: var(--krds-color-gray-0);
2360
+ }
2361
+ .gradientLeft,
2362
+ .gradientRight {
2363
+ height: 100%;
2364
+ width: 24px;
2365
+ }
2366
+ .gradientLeft {
2367
+ background:
2368
+ linear-gradient(
2369
+ to left,
2370
+ rgba(255, 255, 255, 0.25),
2371
+ rgba(255, 255, 255, 1));
2372
+ }
2373
+ .gradientRight {
2374
+ background:
2375
+ linear-gradient(
2376
+ to right,
2377
+ rgba(255, 255, 255, 0.25),
2378
+ rgba(255, 255, 255, 1));
2379
+ }
2380
+ .separator {
2381
+ width: 1px;
2382
+ height: 100%;
2383
+ background: var(--krds-color-gray-20, rgba(0, 0, 0, 0.08));
2384
+ }
2385
+ .buttonLeft {
2386
+ padding-left: 4px;
2387
+ padding-right: 8px;
2388
+ height: 100%;
2389
+ width: 100%;
2390
+ z-index: 10;
2391
+ }
2392
+ .buttonRight {
2393
+ padding-left: 8px;
2394
+ padding-right: 4px;
2395
+ height: 100%;
2396
+ width: 100%;
2397
+ }
2398
+
2399
+ /* src/components/MTable/MTable.module.css */
2400
+ .mTableItem {
2401
+ display: flex;
2402
+ flex-direction: column;
2403
+ gap: 2px;
2404
+ padding: 1rem;
2405
+ border-bottom: 1px solid var(--krds-color-gray-20);
2406
+ &:hover {
2407
+ background-color: var(--krds-color-gray-5);
2408
+ }
2409
+ &:active {
2410
+ background-color: var(--krds-color-information-5);
2411
+ }
2412
+ }
2413
+ .mTableItemContent {
2414
+ display: flex;
2415
+ font-size: 15px;
2416
+ color: var(--krds-color-gray-70);
2417
+ font-weight: var(--krds-typo-font-weight-regular);
2418
+ line-height: 24px;
2419
+ }
2420
+ .mTableItemTitle {
2421
+ font-size: 17px;
2422
+ }
2423
+
2424
+ /* src/components/MTableGuideWrapper/MTableGuideWrapper.module.css */
2425
+ .wrapperContainer {
2426
+ position: relative;
2427
+ }
2428
+ .overlay {
2429
+ position: absolute;
2430
+ top: 0;
2431
+ right: 0;
2432
+ bottom: 0;
2433
+ left: 0;
2434
+ background-color: rgba(0, 0, 0, 0.75);
2435
+ display: flex;
2436
+ justify-content: center;
2437
+ align-items: center;
2438
+ flex-direction: column;
2439
+ gap: 4px;
2440
+ z-index: 999;
2441
+ font-size: 13px;
2442
+ line-height: 20px;
2443
+ color: var(--krds-color-gray-0);
2444
+ }
2445
+ .icons {
2446
+ display: flex;
2447
+ gap: 24px;
2448
+ }
2449
+ .rightIcon {
2450
+ transform: rotate(180deg);
2451
+ }
2452
+ .description {
2453
+ font-weight: 600;
2454
+ }
2455
+ .subDescription {
2456
+ font-weight: 400;
2457
+ }
2458
+
2459
+ /* src/components/Notfount/NotFountPage.module.css */
2460
+ .NotFountPage {
2461
+ border-radius: 16px;
2462
+ background-color: var(--krds-color-gray-0);
2463
+ padding: 24px;
2464
+ display: flex;
2465
+ flex-direction: column;
2466
+ align-items: center;
2467
+ justify-content: center;
2468
+ text-align: center;
2469
+ color: var(--krds-color-gray-80);
2470
+ font-size: 16px;
2471
+ line-height: 24px;
2472
+ gap: 40px;
2473
+ }
2474
+ .NotFountPageContent {
2475
+ display: grid;
2476
+ gap: 8px;
2477
+ text-align: center;
2478
+ }
2479
+
2480
+ /* src/components/TextInput/TextInput.module.css */
2481
+ .wrapper {
2482
+ display: flex;
2483
+ flex-direction: column;
2484
+ justify-content: center;
2485
+ width: 100%;
2486
+ box-sizing: border-box;
2487
+ }
2488
+ .inputGroup {
2489
+ display: flex;
2490
+ flex-direction: column;
2491
+ width: 100%;
2492
+ }
2493
+ .titleWrapper {
2494
+ display: flex;
2495
+ gap: 0.25rem;
2496
+ align-items: center;
2497
+ width: fit-content;
2498
+ line-height: 24px;
2499
+ flex-shrink: 0;
2500
+ }
2501
+ .horizontal {
2502
+ flex-direction: row;
2503
+ align-items: flex-start;
2504
+ }
2505
+ .horizontal > div:last-child {
2506
+ flex: 1;
2507
+ }
2508
+ .input {
2509
+ width: 100%;
2510
+ padding: 0.5rem 1rem;
2511
+ border-radius: 8px;
2512
+ border: 1px solid var(--krds-color-gray-60);
2513
+ color: var(--krds-color-gray-90);
2514
+ font-size: 1rem;
2515
+ font-weight: 400;
2516
+ line-height: 26px;
2517
+ transition:
2518
+ border 0.15s,
2519
+ box-shadow 0.15s,
2520
+ background-color 0.15s;
2521
+ outline: none;
2522
+ background-color: var(--krds-color-gray-0);
2523
+ box-sizing: border-box;
2524
+ }
2525
+ .input:focus {
2526
+ border-color: var(--krds-color-primary-50);
2527
+ box-shadow: 0 0 0 2px var(--krds-color-primary-40);
2528
+ }
2529
+ .input::placeholder {
2530
+ color: var(--krds-color-gray-40);
2531
+ }
2532
+ .input:disabled::placeholder,
2533
+ .inputDisabled::placeholder {
2534
+ color: var(--krds-color-gray-60);
2535
+ opacity: 1;
2536
+ }
2537
+ .inputDisabled {
2538
+ background-color: var(--krds-color-gray-10);
2539
+ color: var(--krds-color-gray-70);
2540
+ transition: background-color 0.15s;
2541
+ border: 1px solid var(--krds-color-gray-60);
2542
+ }
2543
+ .inputLeftIcon {
2544
+ padding-left: 2.2rem;
2545
+ }
2546
+ .inputRightIcon {
2547
+ padding-right: 2.5rem;
2548
+ }
2549
+ .inputRightDefault {
2550
+ padding-right: 2.5rem;
2551
+ }
2552
+ .inputLeftIconSvg,
2553
+ .inputRightIconSvg,
2554
+ .passwordIcon,
2555
+ .deleteButton {
2556
+ position: absolute;
2557
+ top: 50%;
2558
+ transform: translateY(-50%);
2559
+ display: flex;
2560
+ align-items: center;
2561
+ justify-content: center;
2562
+ transition: all 0.2s ease;
2563
+ z-index: 2;
2564
+ }
2565
+ .inputLeftIconSvg {
2566
+ left: clamp(0.3rem, calc(var(--input-width, 100%) * 0.02), 1rem);
2567
+ pointer-events: none;
2568
+ }
2569
+ .inputRightIconSvg {
2570
+ right: clamp(0.3rem, calc(var(--input-width, 100%) * 0.02), 1rem);
2571
+ pointer-events: none;
2572
+ }
2573
+ .inputLeftIconSvg.clickable,
2574
+ .inputRightIconSvg.clickable {
2575
+ pointer-events: auto;
2576
+ cursor: pointer;
2577
+ }
2578
+ .passwordIcon {
2579
+ right: clamp(0.5rem, calc(var(--input-width, 100%) * 0.02), 1rem);
2580
+ width: 24px;
2581
+ height: auto !important;
2582
+ border: none;
2583
+ background: transparent;
2584
+ cursor: pointer;
2585
+ padding: 0;
2586
+ border-radius: 50%;
2587
+ }
2588
+ .passwordIcon:hover {
2589
+ background-color: var(--krds-color-gray-10);
2590
+ opacity: 0.9;
2591
+ }
2592
+ .deleteButton {
2593
+ opacity: 0;
2594
+ pointer-events: none;
2595
+ transition: opacity 0.2s ease, transform 0.1s ease;
2596
+ border: none;
2597
+ background: transparent;
2598
+ cursor: pointer;
2599
+ padding: 0;
2600
+ border-radius: 50%;
2601
+ z-index: 3;
2602
+ }
2603
+ .deleteButton.show {
2604
+ opacity: 1;
2605
+ pointer-events: auto;
2606
+ }
2607
+ .deleteButton:hover {
2608
+ filter: brightness(0.9);
2609
+ }
2610
+ .deleteButton svg circle {
2611
+ transition: fill 0.15s;
2612
+ }
2613
+ .deleteButtonRight {
2614
+ right: clamp(0.5rem, calc(var(--input-width, 100%) * 0.02), 1rem);
2615
+ }
2616
+ .deleteButtonWithIcon {
2617
+ right: clamp(1rem, calc(var(--input-width, 100%) * 0.05 + 1.2rem), 3rem);
2618
+ }
2619
+ @media (max-width: 600px) {
2620
+ .inputRightIcon {
2621
+ padding-right: 3rem;
2622
+ }
2623
+ .inputRightDefault {
2624
+ padding-right: 1.5rem;
2625
+ }
2626
+ .deleteButtonRight {
2627
+ right: 0.5rem;
2628
+ }
2629
+ .deleteButtonWithIcon {
2630
+ right: 2rem;
2631
+ }
2632
+ .inputRightIconSvg {
2633
+ right: 0.5rem;
2634
+ }
2635
+ .passwordIcon {
2636
+ right: 0.5rem;
2637
+ }
2638
+ }
2639
+ @container (max-width: 200px) {
2640
+ .inputLeftIconSvg,
2641
+ .inputRightIconSvg,
2642
+ .deleteButton,
2643
+ .passwordIcon {
2644
+ }
2645
+ .deleteButtonWithIcon {
2646
+ right: 1.8rem;
2647
+ }
2648
+ }
2649
+ @container (min-width: 500px) {
2650
+ .inputLeftIconSvg {
2651
+ left: 1rem;
2652
+ }
2653
+ .inputRightIconSvg,
2654
+ .deleteButtonRight,
2655
+ .passwordIcon {
2656
+ right: 1rem;
2657
+ }
2658
+ .deleteButtonWithIcon {
2659
+ right: 3rem;
2660
+ }
2661
+ }
2662
+ .inputLeftIcon {
2663
+ padding-left: clamp(2rem, calc(var(--input-width, 100%) * 0.08), 3rem);
2664
+ }
2665
+ .inputRightIcon {
2666
+ padding-right: clamp(2.5rem, calc(var(--input-width, 100%) * 0.1), 4rem);
2667
+ }
2668
+ .inputRightDefault {
2669
+ padding-right: clamp(2rem, calc(var(--input-width, 100%) * 0.08), 3rem);
2670
+ }
2671
+ .normal {
2672
+ border-color: var(--krds-color-gray-50);
2673
+ }
2674
+ .error {
2675
+ border-color: var(--krds-color-danger-50);
2676
+ box-shadow: 0 0 0 2px var(--krds-color-danger-40);
2677
+ }
2678
+ .inputContainer {
2679
+ position: relative;
2680
+ display: flex;
2681
+ flex-direction: column;
2682
+ }
2683
+ .statusContainer {
2684
+ display: flex;
2685
+ justify-content: space-between;
2686
+ letter-spacing: -0.02rem;
2687
+ align-items: flex-start;
2688
+ padding-top: 0.25rem;
2689
+ transition: opacity 0.2s ease;
2690
+ pointer-events: none;
2691
+ font-family: "pretendard, system-ui, sans-serif";
2692
+ min-height: 24px;
2693
+ }
2694
+ .statusContainer.visible {
2695
+ display: flex;
2696
+ }
2697
+ .statusContainer.hidden {
2698
+ display: none;
2699
+ }
2700
+ .leftContent {
2701
+ flex: 1;
2702
+ }
2703
+ .charCountWrapper {
2704
+ display: flex;
2705
+ gap: 0.25rem;
2706
+ color: var(--krds-color-gray-70);
2707
+ font-size: 0.8125rem;
2708
+ line-height: 17px;
2709
+ font-family: "pretendard, system-ui, sans-serif";
2710
+ flex-shrink: 0;
2711
+ }
2712
+ .infoText,
2713
+ .errorText {
2714
+ display: flex;
2715
+ align-items: center;
2716
+ gap: 0.25rem;
2717
+ font-size: 0.825rem;
2718
+ font-weight: 400;
2719
+ line-height: 20px;
2720
+ }
2721
+ .errorText {
2722
+ color: var(--krds-color-danger-60);
2723
+ }
2724
+ .infoText svg,
2725
+ .errorText svg {
2726
+ vertical-align: middle;
2727
+ flex-shrink: 0;
2728
+ }
2729
+ @media (max-width: 600px) {
2730
+ .inputRightIcon {
2731
+ padding-right: 3rem;
2732
+ }
2733
+ .inputRightDefault {
2734
+ padding-right: 1.5rem;
2735
+ }
2736
+ .deleteButtonRight {
2737
+ right: 0.5rem;
2738
+ }
2739
+ .deleteButtonWithIcon {
2740
+ right: 2rem;
2741
+ }
2742
+ .inputRightIconSvg {
2743
+ right: 0.5rem;
2744
+ }
2745
+ }
2746
+ @container (max-width: 200px) {
2747
+ .inputLeftIconSvg,
2748
+ .inputRightIconSvg,
2749
+ .deleteButtonRight,
2750
+ .passwordIcon {
2751
+ transform: translateY(-50%) scale(calc(var(--icon-scale, 1) * 0.8));
2752
+ }
2753
+ .deleteButtonWithIcon {
2754
+ right: 1.8rem;
2755
+ }
2756
+ }
2757
+ @container (min-width: 500px) {
2758
+ .inputLeftIconSvg {
2759
+ left: 1rem;
2760
+ }
2761
+ .inputRightIconSvg,
2762
+ .deleteButtonRight,
2763
+ .passwordIcon {
2764
+ right: 1rem;
2765
+ }
2766
+ .deleteButtonWithIcon {
2767
+ right: 3rem;
2768
+ }
2769
+ }
2770
+
2771
+ /* src/components/Pagination/Pagination.module.css */
2772
+ .paginationContainer {
2773
+ display: grid;
2774
+ grid-auto-flow: row;
2775
+ grid-template-columns: auto auto auto;
2776
+ gap: 10px;
2777
+ justify-content: start;
2778
+ }
2779
+ .pagePrev,
2780
+ .pageNext {
2781
+ all: unset;
2782
+ display: flex;
2783
+ align-items: center;
2784
+ padding: 10px 8px;
2785
+ box-sizing: border-box;
2786
+ height: 40px;
2787
+ font-weight: var(--krds-typo-font-weight-regular);
2788
+ font-size: 15px;
2789
+ line-height: 24px;
2790
+ letter-spacing: var(--krds-typo-letter-spacing-0);
2791
+ display: flex;
2792
+ align-items: center;
2793
+ color: var(--krds-color-gray-70);
2794
+ cursor: pointer;
2795
+ border-radius: 6px;
2796
+ &:focus-visible {
2797
+ outline: 2px solid var(--krds-color-primary-50);
2798
+ outline-offset: 2px;
2799
+ }
2800
+ }
2801
+ .disabledMoveButton {
2802
+ color: var(--krds-color-gray-40);
2803
+ }
2804
+ @media (max-width: 768px) {
2805
+ .paginationContainer {
2806
+ display: grid;
2807
+ grid-template-columns: auto auto;
2808
+ column-gap: 16px;
2809
+ row-gap: 20px;
2810
+ grid-template-rows: auto auto;
2811
+ grid-template-areas: "prev next" "page page";
2812
+ }
2813
+ .pagePrev {
2814
+ grid-area: prev;
2815
+ display: flex;
2816
+ justify-content: end;
2817
+ }
2818
+ .pageNext {
2819
+ grid-area: next;
2820
+ display: flex;
2821
+ justify-content: start;
2822
+ }
2823
+ .pageContainer {
2824
+ grid-area: page;
2825
+ display: flex;
2826
+ justify-content: center;
2827
+ }
2828
+ }
2829
+ .pageContainer {
2830
+ display: flex;
2831
+ gap: 8px;
2832
+ }
2833
+ .pageItem {
2834
+ all: unset;
2835
+ border-radius: 6px;
2836
+ padding: 10px;
2837
+ box-sizing: border-box;
2838
+ min-width: 40px;
2839
+ height: 40px;
2840
+ font-weight: var(--krds-typo-font-weight-regular);
2841
+ font-size: 17px;
2842
+ line-height: 26px;
2843
+ letter-spacing: var(--krds-typo-letter-spacing-0);
2844
+ text-align: center;
2845
+ display: flex;
2846
+ align-items: center;
2847
+ justify-content: center;
2848
+ cursor: pointer;
2849
+ &:hover {
2850
+ background-color: var(--krds-color-secondary-5);
2851
+ }
2852
+ &:focus-visible {
2853
+ outline: 2px solid var(--krds-color-primary-50);
2854
+ outline-offset: 2px;
2855
+ }
2856
+ }
2857
+ .moreButton {
2858
+ &:hover {
2859
+ background-color: unset;
2860
+ }
2861
+ }
2862
+ .activePageItem {
2863
+ background-color: var(--krds-color-secondary-70) !important;
2864
+ color: var(--krds-color-gray-0);
2865
+ font-weight: 600;
2866
+ }
2867
+
2868
+ /* src/components/PhoneInput/PhoneInput.module.css */
2869
+ .wrapper {
2870
+ display: flex;
2871
+ flex-direction: column;
2872
+ gap: 0.25rem;
2873
+ justify-content: center;
2874
+ }
2875
+ .titleWrapper {
2876
+ display: flex;
2877
+ gap: 0.25rem;
2878
+ align-items: center;
2879
+ width: fit-content;
2880
+ line-height: 24px;
2881
+ flex-shrink: 0;
2882
+ }
2883
+ .horizontal {
2884
+ flex-direction: row;
2885
+ align-items: flex-start;
2886
+ }
2887
+ .horizontal > div:last-child {
2888
+ flex: 1;
2889
+ }
2890
+ .requiredIndicator {
2891
+ color: var(--krds-color-danger-50);
2892
+ font-size: 15px;
2893
+ line-height: 24px;
2894
+ }
2895
+ .inputGroup {
2896
+ display: flex;
2897
+ gap: 8px;
2898
+ align-items: center;
2899
+ justify-content: center;
2900
+ }
2901
+ .input {
2902
+ flex: 1 1 0;
2903
+ min-width: 6rem;
2904
+ }
2905
+ .separator {
2906
+ color: var(--krds-color-gray-70);
2907
+ font-size: 1.0625rem;
2908
+ font-weight: 800;
2909
+ }
2910
+
2911
+ /* src/components/RadioButton/RadioButton.module.css */
2912
+ .radioContainer {
2913
+ display: flex;
2914
+ align-items: center;
2915
+ gap: 8px;
2916
+ cursor: pointer;
2917
+ flex-wrap: wrap;
2918
+ }
2919
+ @media (max-width: 500px) {
2920
+ .radioContainer {
2921
+ align-items: flex-start;
2922
+ }
2923
+ }
2924
+ .radioOuterCircle {
2925
+ display: inline-flex;
2926
+ justify-content: center;
2927
+ align-items: center;
2928
+ border-radius: 50%;
2929
+ box-sizing: border-box;
2930
+ background-color: var(--krds-color-gray-0);
2931
+ border: 1px solid var(--krds-color-gray-60);
2932
+ transition: all 0.2s ease-in-out;
2933
+ }
2934
+ .radioInnerCircle {
2935
+ width: 0.625rem;
2936
+ height: 0.625rem;
2937
+ border-radius: 50%;
2938
+ background-color: transparent;
2939
+ transition: all 0.2s ease-in-out;
2940
+ }
2941
+ .checked {
2942
+ border: 2px solid var(--krds-color-primary-50);
2943
+ }
2944
+ .innerChecked {
2945
+ background-color: var(--krds-color-primary-50);
2946
+ }
2947
+ .unchecked {
2948
+ border-color: var(--krds-color-gray-60);
2949
+ }
2950
+ .innerUnchecked {
2951
+ background-color: transparent;
2952
+ }
2953
+ .disabled {
2954
+ background-color: var(--krds-color-gray-20);
2955
+ border-color: var(--krds-color-gray-40);
2956
+ cursor: not-allowed;
2957
+ }
2958
+ .innerDisabled {
2959
+ background-color: var(--krds-color-gray-40);
2960
+ }
2961
+ .label {
2962
+ cursor: pointer;
2963
+ transition: color 0.3s;
2964
+ font-weight: 400;
2965
+ }
2966
+ .labelDisabled {
2967
+ cursor: not-allowed;
2968
+ color: var(--krds-color-gray-50);
2969
+ }
2970
+ .srOnly {
2971
+ position: absolute;
2972
+ width: 1px;
2973
+ height: 1px;
2974
+ padding: 0;
2975
+ margin: -1px;
2976
+ overflow: hidden;
2977
+ clip: rect(0, 0, 0, 0);
2978
+ white-space: nowrap;
2979
+ border: 0;
2980
+ }
2981
+ .group {
2982
+ display: flex;
2983
+ }
2984
+ .groupVertical {
2985
+ flex-direction: column;
2986
+ gap: 20px;
2987
+ }
2988
+ .groupHorizontal {
2989
+ flex-direction: row;
2990
+ gap: 20px;
2991
+ }
2992
+ .label_m {
2993
+ font-size: 1.063rem;
2994
+ }
2995
+ .label_l {
2996
+ font-size: 1.188rem;
2997
+ }
2998
+ .radioOuter_m {
2999
+ width: 1.25rem;
3000
+ height: 1.25rem;
3001
+ }
3002
+ .radioInner_m {
3003
+ width: 0.75rem;
3004
+ height: 0.75rem;
3005
+ }
3006
+ .radioOuter_l {
3007
+ width: 1.5rem;
3008
+ height: 1.5rem;
3009
+ }
3010
+ .radioInner_l {
3011
+ width: 0.75rem;
3012
+ height: 0.75rem;
3013
+ }
3014
+
3015
+ /* src/components/Select/Select.module.css */
3016
+ .selectWrapper {
3017
+ position: relative;
3018
+ display: inline-block;
3019
+ }
3020
+ .displayText {
3021
+ display: inline-block;
3022
+ white-space: nowrap;
3023
+ overflow: hidden;
3024
+ text-overflow: ellipsis;
3025
+ }
3026
+ .select {
3027
+ position: relative;
3028
+ display: flex;
3029
+ gap: 8px;
3030
+ }
3031
+ .selectContent {
3032
+ display: flex;
3033
+ flex-direction: column;
3034
+ width: 100%;
3035
+ }
3036
+ .label {
3037
+ color: var(--krds-color-gray-90);
3038
+ }
3039
+ .selectBox {
3040
+ display: flex;
3041
+ box-sizing: border-box !important;
3042
+ justify-content: space-between;
3043
+ align-items: center;
3044
+ padding: 0 16px;
3045
+ font-size: 0.938rem;
3046
+ color: var(--krds-color-gray-90);
3047
+ border-radius: 6px;
3048
+ cursor: pointer;
3049
+ line-height: 1.5;
3050
+ gap: 8px;
3051
+ }
3052
+ .selectBox > span {
3053
+ display: flex;
3054
+ align-items: center;
3055
+ gap: 4px;
3056
+ }
3057
+ .value {
3058
+ display: inline-block;
3059
+ white-space: nowrap;
3060
+ overflow: hidden;
3061
+ text-overflow: ellipsis;
3062
+ font-size: 1rem;
3063
+ }
3064
+ .variantBox {
3065
+ width: 100%;
3066
+ border: 1px solid var(--krds-color-gray-60);
3067
+ background-color: var(--krds-color-gray-0);
3068
+ }
3069
+ .variantText {
3070
+ border: none;
3071
+ background-color: transparent;
3072
+ padding: 0;
3073
+ }
3074
+ .directionVertical {
3075
+ flex-direction: column;
3076
+ align-items: flex-start;
3077
+ }
3078
+ .directionHorizontal {
3079
+ align-items: center;
3080
+ gap: 8px;
3081
+ display: flex;
3082
+ justify-content: space-between;
3083
+ }
3084
+ .sizeS {
3085
+ height: 40px;
3086
+ }
3087
+ .sizeM {
3088
+ height: 48px;
3089
+ }
3090
+ .sizeL {
3091
+ height: 56px;
3092
+ }
3093
+ .valueS {
3094
+ font-size: 0.938rem;
3095
+ }
3096
+ .valueM,
3097
+ .valueL {
3098
+ font-size: 1.063rem;
3099
+ }
3100
+ .selectBox:disabled {
3101
+ background-color: var(--krds-color-gray-20);
3102
+ color: var(--krds-color-gray-40);
3103
+ cursor: not-allowed;
3104
+ }
3105
+ .placeholder {
3106
+ color: var(--krds-color-gray-40);
3107
+ }
3108
+ .default {
3109
+ border-color: var(--krds-color-gray-60);
3110
+ }
3111
+ .focused {
3112
+ border: 2px solid var(--krds-color-primary-50);
3113
+ border-color: var(--krds-color-primary-50);
3114
+ outline-offset: 0;
3115
+ }
3116
+ .completed {
3117
+ border-color: var(--krds-color-gray-60);
3118
+ }
3119
+ .error {
3120
+ border-color: var(--krds-color-danger-50);
3121
+ box-shadow: 0 0 0 2px var(--krds-color-danger-40);
3122
+ }
3123
+ .disabled {
3124
+ background-color: var(--krds-color-gray-20);
3125
+ color: var(--krds-color-gray-40);
3126
+ border-color: var(--krds-color-gray-40);
3127
+ cursor: not-allowed;
3128
+ }
3129
+ .view {
3130
+ background-color: var(--krds-color-gray-20);
3131
+ color: var(--krds-color-gray-70);
3132
+ border-color: var(--krds-color-gray-40);
3133
+ cursor: default;
3134
+ }
3135
+ .dropdownToggle {
3136
+ background: transparent;
3137
+ border: none;
3138
+ cursor: pointer;
3139
+ padding: 4px;
3140
+ display: flex;
3141
+ align-items: center;
3142
+ flex-shrink: 0;
3143
+ }
3144
+ .dropdownToggle:focus {
3145
+ outline: 2px solid var(--krds-color-primary-50);
3146
+ outline-offset: 2px;
3147
+ border-radius: 4px;
3148
+ }
3149
+ .dropdownWrapper {
3150
+ position: absolute;
3151
+ top: 100%;
3152
+ margin-top: 4px;
3153
+ z-index: 100;
3154
+ }
3155
+ .dropdown {
3156
+ background: var(--krds-color-gray-0);
3157
+ border: 1px solid var(--krds-color-gray-50);
3158
+ border-radius: 4px;
3159
+ max-height: 240px;
3160
+ overflow-y: auto;
3161
+ box-sizing: border-box;
3162
+ }
3163
+ .option {
3164
+ margin: 4px 8px;
3165
+ padding: 10px 12px;
3166
+ font-size: 0.938rem;
3167
+ color: var(--krds-color-gray-90);
3168
+ background: transparent;
3169
+ cursor: pointer;
3170
+ border-radius: 4px;
3171
+ }
3172
+ .option:hover,
3173
+ .option.selected {
3174
+ background-color: var(--krds-color-secondary-5);
3175
+ font-weight: 500;
3176
+ }
3177
+ .option.focused {
3178
+ background-color: var(--krds-color-secondary-5);
3179
+ }
3180
+ .icon {
3181
+ pointer-events: none;
3182
+ }
3183
+ .iconOpen {
3184
+ transform: rotate(180deg);
3185
+ }
3186
+ .value {
3187
+ display: block;
3188
+ white-space: nowrap;
3189
+ overflow: hidden;
3190
+ text-overflow: ellipsis;
3191
+ }
3192
+
3193
+ /* src/components/StepIndicator/StepIndicator.module.css */
3194
+ .stepList {
3195
+ overflow-x: auto;
3196
+ white-space: nowrap;
3197
+ display: flex;
3198
+ align-items: flex-start;
3199
+ padding: 0;
3200
+ margin: 0;
3201
+ list-style: none;
3202
+ counter-reset: step;
3203
+ width: 100%;
3204
+ }
3205
+ .stepBox {
3206
+ overflow-x: auto;
3207
+ white-space: nowrap;
3208
+ display: flex;
3209
+ justify-content: space-between;
3210
+ align-items: center !important;
3211
+ gap: 24px;
3212
+ margin: 0;
3213
+ list-style: none;
3214
+ background-color: var(--krds-color-gray-5);
3215
+ border-radius: 12px;
3216
+ padding: 8px;
3217
+ .stepItem {
3218
+ display: flex;
3219
+ flex-direction: row;
3220
+ align-items: center;
3221
+ flex: 0 !important;
3222
+ background-color: transparent;
3223
+ }
3224
+ & > * {
3225
+ flex-shrink: 0;
3226
+ }
3227
+ .ongoing {
3228
+ color: var(--krds-color-primary-60);
3229
+ }
3230
+ .stepCircle {
3231
+ margin: 0;
3232
+ }
3233
+ .stepLabelGroup {
3234
+ padding: 0;
3235
+ }
3236
+ li::after {
3237
+ display: none !important;
3238
+ }
3239
+ .stepLabel {
3240
+ display: none;
3241
+ }
3242
+ .stepTitle {
3243
+ margin: 0;
3244
+ }
3245
+ }
3246
+ .stepItem {
3247
+ position: relative;
3248
+ display: flex;
3249
+ flex-direction: column;
3250
+ align-items: center;
3251
+ flex: 1;
3252
+ text-align: center;
3253
+ }
3254
+ .left {
3255
+ align-items: flex-start;
3256
+ .stepLabelGroup {
3257
+ padding-left: 0 !important;
3258
+ }
3259
+ }
3260
+ .left:not(:last-child)::after {
3261
+ left: 0 !important;
3262
+ }
3263
+ .stepItem:not(:last-child)::after {
3264
+ content: "";
3265
+ position: absolute;
3266
+ top: 14%;
3267
+ left: 50%;
3268
+ transform: translateX(0%);
3269
+ width: 100%;
3270
+ height: 2px;
3271
+ background-color: var(--krds-color-gray-20);
3272
+ z-index: 0;
3273
+ }
3274
+ .flex-start:not(:last-child)::after {
3275
+ left: 0;
3276
+ }
3277
+ .completed:not(:last-child)::after {
3278
+ background-color: var(--krds-color-gray-50);
3279
+ }
3280
+ .stepCircle {
3281
+ z-index: 1;
3282
+ width: 24px;
3283
+ height: 24px;
3284
+ box-sizing: border-box;
3285
+ border-radius: 50%;
3286
+ background-color: var(--krds-color-gray-10);
3287
+ border: 1px solid var(--krds-color-gray-20);
3288
+ display: flex;
3289
+ align-items: center;
3290
+ justify-content: center;
3291
+ margin-bottom: 1rem;
3292
+ }
3293
+ .completed .stepCircle {
3294
+ background-color: var(--krds-color-gray-50);
3295
+ color: var(--krds-color-gray-0);
3296
+ border: none;
3297
+ }
3298
+ .ongoing .stepCircle {
3299
+ border: 2px solid var(--krds-color-primary-50);
3300
+ background-color: var(--krds-color-gray-0);
3301
+ }
3302
+ .stepLabel {
3303
+ font-size: 13px;
3304
+ color: var(--krds-color-gray-70);
3305
+ font-weight: 400;
3306
+ }
3307
+ .stepLabelGroup {
3308
+ display: flex;
3309
+ flex-direction: column;
3310
+ align-items: flex-start;
3311
+ padding-left: 30px;
3312
+ }
3313
+ .stepTitle {
3314
+ font-weight: 600;
3315
+ font-size: 15px;
3316
+ margin-top: 4px;
3317
+ color: var(--krds-color-gray-70);
3318
+ }
3319
+ .stepButton {
3320
+ display: flex;
3321
+ flex-direction: column;
3322
+ align-items: center;
3323
+ width: 100%;
3324
+ padding: 0;
3325
+ margin: 0;
3326
+ background: none;
3327
+ border: none;
3328
+ cursor: pointer;
3329
+ font-family: inherit;
3330
+ text-align: center;
3331
+ }
3332
+ .stepButton:focus-visible {
3333
+ outline: 2px solid var(--krds-color-primary-50);
3334
+ outline-offset: 2px;
3335
+ border-radius: 4px;
3336
+ }
3337
+ .stepBox .stepButton {
3338
+ flex-direction: row;
3339
+ gap: 10px;
3340
+ padding: 18px 24px;
3341
+ border-radius: 8px;
3342
+ transition: background-color 500ms ease;
3343
+ }
3344
+ .stepBox .ongoing .stepButton {
3345
+ background-color: #fff;
3346
+ padding: 16px 24px;
3347
+ }
3348
+
3349
+ /* src/components/Switch/Switch.module.css */
3350
+ .switchContainer {
3351
+ display: inline-flex;
3352
+ align-items: center;
3353
+ cursor: pointer;
3354
+ }
3355
+ .switchContainer.disabled {
3356
+ cursor: default;
3357
+ }
3358
+ .srOnly {
3359
+ position: absolute;
3360
+ width: 1px;
3361
+ height: 1px;
3362
+ padding: 0;
3363
+ margin: -1px;
3364
+ overflow: hidden;
3365
+ clip: rect(0, 0, 0, 0);
3366
+ border: 0;
3367
+ }
3368
+ .srOnly:focus + .switchTrack {
3369
+ outline: none;
3370
+ box-shadow: 0 0 0 2px var(--krds-color-gray-0), 0 0 0 4px var(--krds-color-primary-40);
3371
+ }
3372
+ .switchTrack {
3373
+ display: inline-block;
3374
+ position: relative;
3375
+ border-radius: 14px;
3376
+ transition:
3377
+ background 0.2s,
3378
+ outline 0.2s,
3379
+ box-shadow 0.2s;
3380
+ background: var(--krds-color-gray-50);
3381
+ }
3382
+ .switchContainer input:checked + .switchTrack {
3383
+ background: var(--krds-color-primary-50);
3384
+ }
3385
+ .switchContainer input:disabled + .switchTrack,
3386
+ .switchContainer input:checked:disabled + .switchTrack {
3387
+ background: var(--krds-color-gray-20);
3388
+ }
3389
+ .switchThumb {
3390
+ display: flex;
3391
+ align-items: center;
3392
+ justify-content: center;
3393
+ position: absolute;
3394
+ top: 1.7px;
3395
+ background: var(--krds-color-gray-0);
3396
+ border-radius: 50%;
3397
+ transition: left 0.2s, background 0.2s;
3398
+ box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
3399
+ }
3400
+ .closeIcon {
3401
+ display: flex;
3402
+ align-items: center;
3403
+ justify-content: center;
3404
+ }
3405
+ .checkIcon {
3406
+ display: flex;
3407
+ align-items: center;
3408
+ justify-content: center;
3409
+ }
3410
+ .switchContainer input:disabled + .switchTrack .switchThumb,
3411
+ .switchContainer input:checked:disabled + .switchTrack .switchThumb {
3412
+ background: var(--krds-color-gray-40);
3413
+ }
3414
+ .labelMarginRight {
3415
+ margin-right: 0.5rem;
3416
+ }
3417
+ .labelMarginLeft {
3418
+ margin-left: 0.5rem;
3419
+ }
3420
+
3421
+ /* src/components/Tab/Tab.module.css */
3422
+ .tabsContainer {
3423
+ width: 100%;
3424
+ height: 100%;
3425
+ display: flex;
3426
+ flex-direction: column;
3427
+ }
3428
+ .tabList {
3429
+ display: flex;
3430
+ justify-content: space-between;
3431
+ align-items: center;
3432
+ flex: 0 0 auto;
3433
+ position: sticky;
3434
+ top: 0;
3435
+ z-index: 10;
3436
+ background-color: var(--krds-color-gray-0);
3437
+ }
3438
+ .tabListInner {
3439
+ display: flex;
3440
+ align-items: center;
3441
+ flex: 1;
3442
+ }
3443
+ .sideButtonContainer {
3444
+ display: flex;
3445
+ align-items: center;
3446
+ margin-left: auto;
3447
+ }
3448
+ .tabContentContainer {
3449
+ flex: 1 1 auto;
3450
+ position: relative;
3451
+ }
3452
+ .tabpannelLayout {
3453
+ width: 100%;
3454
+ height: 100%;
3455
+ }
3456
+ .hidden {
3457
+ display: none;
3458
+ }
3459
+ .srOnly {
3460
+ position: absolute;
3461
+ width: 1px;
3462
+ height: 1px;
3463
+ padding: 0;
3464
+ margin: -1px;
3465
+ overflow: hidden;
3466
+ clip: rect(0, 0, 0, 0);
3467
+ white-space: nowrap;
3468
+ border: 0;
3469
+ }
3470
+ .tabButton {
3471
+ padding: 12px 24px;
3472
+ transition: all 0.4s ease-in-out;
3473
+ outline: none;
3474
+ border: none;
3475
+ background: none;
3476
+ }
3477
+ .tabButton:hover {
3478
+ background-color: var(--krds-color-primary-5);
3479
+ }
3480
+ .tabButtonSelected {
3481
+ border-bottom: 4px solid var(--krds-color-secondary-70);
3482
+ }
3483
+ .tabButtonUnselected {
3484
+ border-bottom: none;
3485
+ }
3486
+ .tabLabel {
3487
+ cursor: pointer;
3488
+ font-size: 1.188rem;
3489
+ font-weight: 400;
3490
+ color: var(--krds-color-gray-70);
3491
+ line-height: 1.875rem;
3492
+ }
3493
+ .tabButtonSelected .tabLabel {
3494
+ font-weight: 700;
3495
+ }
3496
+ .variantUnderline {
3497
+ border-bottom: 1px solid var(--krds-color-gray-40);
3498
+ }
3499
+ .variantPlain {
3500
+ border-bottom: none;
3501
+ }
3502
+ .variantBox {
3503
+ display: flex;
3504
+ border: none;
3505
+ gap: 0;
3506
+ }
3507
+ .variantBox .tabButton {
3508
+ border: 1px solid var(--krds-color-gray-30);
3509
+ background-color: transparent;
3510
+ padding: 0 1rem !important;
3511
+ }
3512
+ .variantBox .tabButton:hover:not(.tabButtonSelected) {
3513
+ background-color: var(--krds-color-secondary-5);
3514
+ }
3515
+ .variantBox .tabLabel {
3516
+ font-size: 1.063rem;
3517
+ }
3518
+ .variantBox .tabButtonSelected {
3519
+ background-color: var(--krds-color-secondary-70);
3520
+ color: var(--krds-color-gray-0);
3521
+ }
3522
+ .variantBox .tabButtonSelected .tabLabel {
3523
+ color: var(--krds-color-gray-0);
3524
+ font-weight: 600;
3525
+ }
3526
+ .variantBox .tabButton:first-child {
3527
+ border-radius: 6px 0 0 6px !important;
3528
+ }
3529
+ .variantBox .tabButton:not(:first-child):not(:last-child) {
3530
+ border-left: none;
3531
+ border-radius: 0;
3532
+ }
3533
+ .variantBox .tabButton:last-child {
3534
+ border-left: none;
3535
+ border-radius: 0 6px 6px 0 !important;
3536
+ }
3537
+ .variantFill {
3538
+ display: flex;
3539
+ border: none;
3540
+ gap: 0;
3541
+ width: 100%;
3542
+ }
3543
+ .variantFill .tabButton {
3544
+ flex: 1;
3545
+ border: 1px solid var(--krds-color-gray-30);
3546
+ border-radius: 8px 8px 0 0;
3547
+ background-color: transparent;
3548
+ width: 100%;
3549
+ padding: 0 1rem !important;
3550
+ }
3551
+ .variantFill .tabLabel {
3552
+ font-size: 1.063rem;
3553
+ }
3554
+ .variantFill .tabButton:hover:not(.tabButtonSelected) {
3555
+ background-color: var(--krds-color-secondary-5);
3556
+ }
3557
+ .variantFill .tabButtonSelected {
3558
+ background-color: var(--krds-color-secondary-70);
3559
+ color: var(--krds-color-gray-0);
3560
+ }
3561
+ .variantFill .tabButtonSelected .tabLabel {
3562
+ color: var(--krds-color-gray-0);
3563
+ font-weight: 600;
3564
+ }
3565
+ .variantFill .tabButton:first-child {
3566
+ border-radius: 6px 0 0 6px !important;
3567
+ }
3568
+ .variantFill .tabButton:not(:first-child):not(:last-child) {
3569
+ border-left: none;
3570
+ border-radius: 0;
3571
+ }
3572
+ .variantFill .tabButton:last-child {
3573
+ border-left: none;
3574
+ border-radius: 0 6px 6px 0 !important;
3575
+ }
3576
+
3577
+ /* src/components/Tag/Tag.module.css */
3578
+ .tag {
3579
+ display: inline-flex;
3580
+ align-items: center;
3581
+ justify-content: center;
3582
+ white-space: nowrap;
3583
+ border-radius: 9999px;
3584
+ box-sizing: border-box;
3585
+ }
3586
+ .textSmall {
3587
+ font-size: 0.813rem;
3588
+ }
3589
+ .textMedium {
3590
+ font-size: 1.063rem;
3591
+ }
3592
+ .textLarge {
3593
+ font-size: 1.063rem;
3594
+ }
3595
+ .normalWeight {
3596
+ font-weight: 400 !important;
3597
+ }
3598
+ .text {
3599
+ background: transparent;
3600
+ border: 1px solid var(--krds-color-gray-20);
3601
+ color: var(--krds-color-gray-70);
3602
+ }
3603
+ .removableDefault {
3604
+ background: transparent;
3605
+ border: 1px solid var(--krds-color-gray-20);
3606
+ color: var(--krds-color-gray-70);
3607
+ }
3608
+ .removableHover {
3609
+ background-color: var(--krds-color-secondary-5);
3610
+ color: var(--krds-color-gray-70);
3611
+ }
3612
+ .removablePressed {
3613
+ background-color: var(--krds-color-secondary-10);
3614
+ color: var(--krds-color-gray-70);
3615
+ }
3616
+ .cursorPointer {
3617
+ cursor: pointer;
3618
+ }
3619
+ .cursorNotAllowed {
3620
+ cursor: not-allowed;
3621
+ }
3622
+ .cursorDefault {
3623
+ cursor: default;
3624
+ }
3625
+ .deleteButton {
3626
+ width: 16px;
3627
+ height: 16px;
3628
+ display: flex;
3629
+ align-items: center;
3630
+ justify-content: center;
3631
+ padding: 0;
3632
+ background: none;
3633
+ border: none;
3634
+ cursor: pointer;
3635
+ }
3636
+ .s {
3637
+ height: 24px;
3638
+ padding: 6px;
3639
+ gap: 2px;
3640
+ }
3641
+ .removable {
3642
+ background-color: var(--krds-color-gray-0);
3643
+ border: 1px solid var(--krds-color-gray-20);
3644
+ }
3645
+ .removable:hover {
3646
+ background-color: var(--krds-color-secondary-5);
3647
+ border-color: var(--krds-color-secondary-5);
3648
+ }
3649
+ .removable:active {
3650
+ background-color: var(--krds-color-secondary-10);
3651
+ border-color: var(--krds-color-secondary-10);
3652
+ }
3653
+ .s.text {
3654
+ min-width: 43px;
3655
+ }
3656
+ .s.removable {
3657
+ min-width: 53px;
3658
+ }
3659
+ .m {
3660
+ height: 32px;
3661
+ padding: 6px 8px;
3662
+ gap: 2px;
3663
+ }
3664
+ .m.text {
3665
+ min-width: 56px;
3666
+ }
3667
+ .m.removable {
3668
+ min-width: 64px;
3669
+ }
3670
+ .l {
3671
+ height: 38px;
3672
+ padding: 6px 12px;
3673
+ gap: 2px;
3674
+ }
3675
+ .l.text {
3676
+ min-width: 64px;
3677
+ }
3678
+ .l.removable {
3679
+ min-width: 72px;
3680
+ }
3681
+
3682
+ /* src/components/TextArea/TextArea.module.css */
3683
+ .wrapper {
3684
+ display: flex;
3685
+ flex-direction: column;
3686
+ justify-content: center;
3687
+ box-sizing: border-box;
3688
+ gap: 0.25rem;
3689
+ width: 100%;
3690
+ }
3691
+ .titleWrapper {
3692
+ display: flex;
3693
+ gap: 0.25rem;
3694
+ align-items: center;
3695
+ width: fit-content;
3696
+ line-height: 24px;
3697
+ flex-shrink: 0;
3698
+ }
3699
+ .horizontal {
3700
+ flex-direction: row;
3701
+ align-items: flex-start;
3702
+ }
3703
+ .horizontal > div:last-child {
3704
+ flex: 1;
3705
+ }
3706
+ .textarea {
3707
+ width: 100%;
3708
+ color: var(--krds-color-gray-90);
3709
+ font-size: 1.0625rem;
3710
+ padding: 0.5rem 1rem;
3711
+ resize: none;
3712
+ border: 1px solid var(--krds-color-gray-60);
3713
+ border-radius: 0.5rem;
3714
+ transition:
3715
+ border 0.15s,
3716
+ box-shadow 0.15s,
3717
+ background-color 0.15s;
3718
+ outline: none;
3719
+ box-sizing: border-box;
3720
+ overflow-y: auto;
3721
+ font-family: "pretendard, system-ui, sans-serif";
3722
+ }
3723
+ .textarea:focus {
3724
+ border-color: var(--krds-color-primary-50);
3725
+ box-shadow: 0 0 0 1px var(--krds-color-primary-40);
3726
+ }
3727
+ .textarea::placeholder {
3728
+ color: var(--krds-color-gray-40);
3729
+ }
3730
+ .textarea:disabled::placeholder,
3731
+ .textareaDisabled::placeholder {
3732
+ color: var(--krds-color-gray-40);
3733
+ opacity: 1;
3734
+ }
3735
+ .textareaDisabled {
3736
+ background-color: var(--krds-color-gray-20);
3737
+ color: var(--krds-color-gray-70);
3738
+ transition: background-color 0.15s;
3739
+ }
3740
+ .sizeS {
3741
+ height: 6rem;
3742
+ }
3743
+ .sizeM {
3744
+ height: 8rem;
3745
+ }
3746
+ .sizeL {
3747
+ height: 10rem;
3748
+ }
3749
+ .normal {
3750
+ border-color: var(--krds-color-gray-50);
3751
+ }
3752
+ .error {
3753
+ border-color: var(--krds-color-danger-50);
3754
+ box-shadow: 0 0 0 2px var(--krds-color-danger-40);
3755
+ }
3756
+ .charCountWrapper {
3757
+ display: flex;
3758
+ transition: opacity 0.2s ease;
3759
+ pointer-events: none;
3760
+ gap: 0.25rem;
3761
+ color: var(--krds-color-gray-70);
3762
+ font-size: 0.8125rem;
3763
+ line-height: 17px;
3764
+ font-family: "pretendard, system-ui, sans-serif";
3765
+ }
3766
+
3767
+ /* src/components/TimeSelector/TimeSelector.module.css */
3768
+ .container {
3769
+ position: relative;
3770
+ }
3771
+ .popupContainer {
3772
+ margin-top: 2px;
3773
+ }
3774
+ .timeInputContainer {
3775
+ padding: 9px 24px;
3776
+ }
3777
+ .timeInput {
3778
+ cursor: pointer;
3779
+ }
3780
+ .selector {
3781
+ display: flex;
3782
+ gap: 4px;
3783
+ height: 48px;
3784
+ align-items: center;
3785
+ justify-content: space-between;
3786
+ border-radius: 6px;
3787
+ background-color: var(--krds-color-alpha-white100);
3788
+ padding: 8px 24px;
3789
+ cursor: pointer;
3790
+ box-sizing: border-box;
3791
+ user-select: none;
3792
+ }
3793
+ .iconWrapper {
3794
+ display: flex;
3795
+ height: 16px;
3796
+ width: 16px;
3797
+ align-items: center;
3798
+ justify-content: flex-end;
3799
+ }
3800
+ .popup {
3801
+ position: absolute;
3802
+ top: 105%;
3803
+ z-index: 50;
3804
+ height: 200px;
3805
+ width: 90px;
3806
+ overflow-y: scroll;
3807
+ border-radius: 8px;
3808
+ background-color: var(--krds-color-alpha-white100);
3809
+ filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
3810
+ }
3811
+ .popupContainer {
3812
+ position: absolute;
3813
+ z-index: 50;
3814
+ width: 328px;
3815
+ border-radius: 0.75rem;
3816
+ border: 1px solid var(--krds-color-gray-20);
3817
+ background-color: var(--krds-color-secondary-5);
3818
+ }
3819
+ .timeSelectorWrapper {
3820
+ display: flex;
3821
+ justify-content: center;
3822
+ gap: 0.5rem;
3823
+ padding: 1.5rem;
3824
+ }
3825
+ .meridiemWrapper {
3826
+ width: 44px;
3827
+ display: flex;
3828
+ flex-direction: column;
3829
+ gap: 2px;
3830
+ }
3831
+ .meridiemButton {
3832
+ font-weight: bold;
3833
+ border: 1px solid var(--krds-color-primary-50) !important;
3834
+ background-color: var(--krds-color-alpha-white100) !important;
3835
+ color: var(--krds-color-primary-50) !important;
3836
+ }
3837
+ .disabledMeridiemButton {
3838
+ font-weight: bold;
3839
+ border: none !important;
3840
+ background-color: var(--krds-color-secondary-10) !important;
3841
+ color: var(--krds-color-gray-70) !important;
3842
+ }
3843
+ .popupFooter {
3844
+ display: flex;
3845
+ width: 100%;
3846
+ justify-content: flex-end;
3847
+ gap: 0.5rem;
3848
+ background-color: var(--krds-color-alpha-white100);
3849
+ padding: 1rem 1.5rem;
3850
+ box-sizing: border-box;
3851
+ border-bottom-left-radius: 0.75rem;
3852
+ border-bottom-right-radius: 0.75rem;
3853
+ }
3854
+ .fullWidth {
3855
+ width: 100%;
3856
+ }
3857
+
3858
+ /* src/components/Title/Title.module.css */
3859
+ .title {
3860
+ margin: 0;
3861
+ }
3862
+ .size_xxl {
3863
+ font-size: 2.5rem;
3864
+ }
3865
+ .size_xl {
3866
+ font-size: 2.125rem;
3867
+ }
3868
+ .size_l {
3869
+ font-size: 1.75rem;
3870
+ }
3871
+ .size_m {
3872
+ font-size: 1.5rem;
3873
+ }
3874
+ .size_s {
3875
+ font-size: 1.25rem;
3876
+ }
3877
+ .size_xs {
3878
+ font-size: 1rem;
3879
+ }
3880
+ .size_1 {
3881
+ font-size: 19px;
3882
+ line-height: 30px;
3883
+ }
3884
+ .size_2 {
3885
+ font-size: 17px;
3886
+ line-height: 26px;
3887
+ }
3888
+ @media (max-width: 600px) {
3889
+ .size_xxl {
3890
+ font-size: 2rem;
3891
+ }
3892
+ .size_xl {
3893
+ font-size: 1.5rem;
3894
+ }
3895
+ .size_l {
3896
+ font-size: 1.25rem;
3897
+ }
3898
+ .size_m {
3899
+ font-size: 1.125rem;
3900
+ }
3901
+ .size_s {
3902
+ font-size: 1rem;
3903
+ }
3904
+ .size_xs {
3905
+ font-size: 0.875rem;
3906
+ }
3907
+ }
3908
+
3909
+ /* src/components/ToastBar/ToastBar.module.css */
3910
+ .toastBar {
3911
+ border-radius: 8px;
3912
+ display: flex;
3913
+ padding: 16px;
3914
+ gap: 8px;
3915
+ align-items: flex-start;
3916
+ width: 720px;
3917
+ max-height: 118px;
3918
+ }
3919
+ .toastBar:focus {
3920
+ outline: 3px solid var(--krds-color-information-60);
3921
+ outline-offset: 2px;
3922
+ }
3923
+ .toastBar.danger:focus {
3924
+ outline-color: var(--krds-color-danger-60);
3925
+ }
3926
+ .toastBar.warning:focus {
3927
+ outline-color: var(--krds-color-warning-60);
3928
+ }
3929
+ .toastBar.success:focus {
3930
+ outline-color: var(--krds-color-success-60);
3931
+ }
3932
+ @media screen and (max-width: 768px) {
3933
+ .toastBar {
3934
+ width: 329px;
3935
+ max-height: 162px;
3936
+ }
3937
+ }
3938
+ .description {
3939
+ font-weight: 400;
3940
+ font-size: 17px;
3941
+ line-height: 26px;
3942
+ color: var(--krds-color-gray-90);
3943
+ }
3944
+ .descriptionIndented {
3945
+ font-weight: 400;
3946
+ font-size: 17px;
3947
+ line-height: 26px;
3948
+ color: var(--krds-color-gray-90);
3949
+ }
3950
+ @media screen and (max-width: 768px) {
3951
+ .descriptionIndented {
3952
+ font-size: 15px;
3953
+ }
3954
+ }
3955
+ .titleRow {
3956
+ display: flex;
3957
+ align-items: center;
3958
+ gap: 8px;
3959
+ }
3960
+ .title {
3961
+ font-weight: 700;
3962
+ font-size: 17px;
3963
+ line-height: 26px;
3964
+ }
3965
+ .title_danger {
3966
+ color: var(--krds-color-danger-60);
3967
+ }
3968
+ .title_success {
3969
+ color: var(--krds-color-success-60);
3970
+ }
3971
+ .title_warning {
3972
+ color: var(--krds-color-warning-60);
3973
+ }
3974
+ .title_information {
3975
+ color: var(--krds-color-information-60);
3976
+ }
3977
+ .danger {
3978
+ background-color: var(--krds-color-danger-5);
3979
+ border: 1px solid var(--krds-color-danger-10);
3980
+ color: var(--krds-color-danger-60);
3981
+ }
3982
+ .warning {
3983
+ background-color: var(--krds-color-warning-5);
3984
+ border: 1px solid var(--krds-color-warning-10);
3985
+ color: var(--krds-color-warning-60);
3986
+ }
3987
+ .success {
3988
+ background-color: var(--krds-color-success-5);
3989
+ border: 1px solid var(--krds-color-success-10);
3990
+ color: var(--krds-color-success-60);
3991
+ }
3992
+ .information {
3993
+ background-color: var(--krds-color-information-5);
3994
+ border: 1px solid var(--krds-color-information-10);
3995
+ color: var(--krds-color-information-60);
3996
+ }
3997
+ .content {
3998
+ display: flex;
3999
+ flex-direction: column;
4000
+ gap: 8px;
4001
+ }
4002
+ .icon {
4003
+ margin-top: 2px;
4004
+ }
4005
+ .toastBarWrapper {
4006
+ position: fixed;
4007
+ top: 50px;
4008
+ right: 16px;
4009
+ display: grid;
4010
+ justify-content: flex-end;
4011
+ flex-direction: column-reverse;
4012
+ gap: 10px;
4013
+ pointer-events: none;
4014
+ z-index: 2500;
4015
+ min-width: 100vw;
4016
+ }
4017
+
4018
+ /* src/components/Drawer/Drawer.module.css */
4019
+ .overlay {
4020
+ position: fixed;
4021
+ background-color: rgba(0, 0, 0, 0.75);
4022
+ top: 0;
4023
+ left: 0;
4024
+ right: 0;
4025
+ bottom: 0;
4026
+ z-index: 10;
4027
+ }
4028
+ .contentBox {
4029
+ background-color: var(--krds-color-gray-0);
4030
+ border-radius: 12px;
4031
+ min-height: 24px;
4032
+ position: absolute;
4033
+ max-width: 100%;
4034
+ max-height: 100%;
4035
+ display: flex;
4036
+ flex-direction: column;
4037
+ }
4038
+ .titleWrapper {
4039
+ display: flex;
4040
+ justify-content: end;
4041
+ align-items: center;
4042
+ gap: 10px;
4043
+ padding: 1rem;
4044
+ }
4045
+ .contentWrapper {
4046
+ flex-grow: 1;
4047
+ flex-shrink: 0;
4048
+ overflow: auto;
4049
+ }
4050
+ .title {
4051
+ padding-top: 24px;
4052
+ font-size: 17px;
4053
+ font-weight: 700;
4054
+ color: var(--krds-color-gray-70);
4055
+ flex: 1;
4056
+ }
4057
+ /*# sourceMappingURL=index.css.map */