1
0
mirror of https://github.com/vercel/commerce.git synced 2025-05-02 07:47:50 +00:00
2020-10-12 21:40:39 -03:00

19 lines
240 B
CSS

.root {
}
.list {
@apply flex flex-row items-center;
}
.item {
@apply mr-6 cursor-pointer relative transition ease-in-out duration-100 text-primary;
&:hover {
@apply text-secondary;
}
&:last-child {
@apply mr-0;
}
}