feat: components SelectCommon

This commit is contained in:
unknown
2021-08-25 18:17:57 +07:00
parent c0c4aa9c10
commit a18eb2b320
4 changed files with 61 additions and 5 deletions

View File

@@ -0,0 +1,32 @@
@import "../../../styles/utilities";
.select{
@apply rounded-lg border-solid;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 1.2rem 1.6rem;
&.base{
width: 18.6rem;
height: 4.8rem;
}
&.large{
width: 34.25rem;
height: 5.6rem;
}
&.default{
@apply border;
}
&.custom{
@apply border-2;
border-color: var(--border-line);
color: var(--text-label);
}
.option{
&:hover{
background-color: black;
}
}
}