fix. 코드 리팩토링

This commit is contained in:
clkim
2026-01-16 14:55:02 +09:00
parent c8cd7f780e
commit 40dc7f0e40
34 changed files with 238 additions and 369 deletions

View File

@@ -1,25 +1,25 @@
/* Button Size Classes */
@layer components {
/* height: 64px */
.size-large {
/* height: 64px */
@apply px-10 h-16 text-lg rounded-lg
before:rounded-lg after:rounded-lg;
}
/* height: 56px */
.size-medium {
/* height: 56px */
@apply px-10 h-14 text-base rounded-lg
before:rounded-lg after:rounded-lg;
}
/* height: 48px */
.size-small {
/* height: 48px */
@apply px-10 h-12 text-sm rounded-lg
before:rounded-lg after:rounded-lg;
}
/* height: 40px */
.size-extra-small {
/* height: 40px */
@apply px-6 h-10 text-sm rounded
before:rounded after:rounded;
}