mirror of
https://github.com/vercel/commerce.git
synced 2025-04-25 12:27:50 +00:00
18 lines
261 B
CSS
18 lines
261 B
CSS
.root {
|
|
}
|
|
|
|
.list {
|
|
@apply flex flex-row items-center h-full;
|
|
}
|
|
|
|
.item {
|
|
@apply mr-6 cursor-pointer relative transition ease-in-out duration-100 text-base flex items-center;
|
|
&:hover {
|
|
@apply text-accents-8;
|
|
}
|
|
|
|
&:last-child {
|
|
@apply mr-0;
|
|
}
|
|
}
|