fix: fix css component MenuNavigation and fix conflic

This commit is contained in:
quangnhankie
2021-09-07 11:17:12 +07:00
parent ec3c2e0b67
commit 60dd790c9c
41 changed files with 894 additions and 10000 deletions

View File

@@ -0,0 +1,22 @@
.warpper{
.item{
@apply inline-flex items-center justify-center cursor-pointer;
background-color: var(--gray);
margin: 0 0.4rem;
width: 3.2rem;
height: 3.2rem;
&.active{
@apply border border-solid;
border-color: var(--text-active);
background-color: var(--white);
}
&.disable{
svg{
path{
fill: var(--disabled)
}
}
@apply text-disabled cursor-not-allowed;
}
}
}