mirror of
https://github.com/vercel/commerce.git
synced 2025-07-22 20:26:49 +00:00
31 lines
693 B
SCSS
31 lines
693 B
SCSS
@import '../../../../styles/utilities';
|
|
|
|
.formAuthen {
|
|
@apply bg-white w-full u-form;
|
|
.inner {
|
|
@screen md {
|
|
width: 60rem;
|
|
margin: auto;
|
|
}
|
|
.others {
|
|
@apply font-bold text-center;
|
|
margin-top: 4rem;
|
|
|
|
span {
|
|
@apply text-active;
|
|
margin-right: 0.8rem;
|
|
}
|
|
button {
|
|
all: unset;
|
|
@apply text-primary cursor-pointer;
|
|
&:focus-visible {
|
|
outline: 2px solid #000;
|
|
}
|
|
&:focus {
|
|
outline: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|