1
0
mirror of https://github.com/vercel/commerce.git synced 2025-05-02 15:57:52 +00:00
2020-10-08 14:46:33 -06:00

19 lines
226 B
CSS

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