forked from crowetic/commerce
19 lines
226 B
CSS
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;
|
|
}
|
|
}
|