feat: SelectCommon

This commit is contained in:
unknown
2021-09-06 14:57:43 +07:00
parent 0e12b716c7
commit 807fbff177
7 changed files with 193 additions and 38 deletions

View File

@@ -0,0 +1,20 @@
@import "../../../../styles/utilities";
.selectOption {
@apply outline-none;
background-color: var(--white);
&.base{
width: 20.4rem;
padding: 0.8rem 1.6rem;
}
&.large{
width: 33.75rem;
padding: 0.8rem 1.6rem;
}
&:hover{
background-color: var(--gray);
}
&.isChoose{
background-color: var(--gray);
}
}