mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 07:26:59 +00:00
26 lines
425 B
CSS
26 lines
425 B
CSS
.root {
|
|
@apply h-full flex flex-col relative w-full relative;
|
|
}
|
|
|
|
.fieldset {
|
|
@apply flex flex-col my-3;
|
|
}
|
|
|
|
.fieldset .label {
|
|
@apply text-accent-7 uppercase text-xs font-medium mb-2;
|
|
}
|
|
|
|
.fieldset .input,
|
|
.fieldset .select {
|
|
@apply p-2 border border-accent-3 w-full text-sm font-normal;
|
|
}
|
|
|
|
.fieldset .input:focus,
|
|
.fieldset .select:focus {
|
|
@apply outline-none shadow-outline-normal;
|
|
}
|
|
|
|
.radio {
|
|
@apply bg-black;
|
|
}
|