cra-template-jinsung
Version:
Jinsung's custom template for Create React App.
21 lines (20 loc) • 357 B
CSS
@layer components {
.Button {
@apply inline-block px-4 py-2 rounded-lg;
@apply font-medium;
}
@responsive {
.Button--sm {
@apply px-3 py-1 text-sm rounded-md;
}
.Button--md {
@apply px-4 py-2 text-base;
}
.Button--lg {
@apply px-6 text-xl;
}
.Button--xl {
@apply px-10 text-4xl;
}
}
}