mirror of
https://github.com/vercel/commerce.git
synced 2025-04-16 16:15:53 +00:00
26 lines
388 B
CSS
26 lines
388 B
CSS
.root {
|
|
@apply relative;
|
|
}
|
|
|
|
.mainContainer {
|
|
}
|
|
|
|
.list {
|
|
@apply flex flex-row items-center justify-items-end h-full;
|
|
}
|
|
|
|
.item {
|
|
@apply mr-6 cursor-pointer relative transition ease-in-out duration-150 text-base flex items-center;
|
|
&:hover {
|
|
@apply text-accents-8 transition scale-110 duration-150;
|
|
}
|
|
|
|
&:last-child {
|
|
@apply mr-0;
|
|
}
|
|
|
|
&:focus {
|
|
outline: none;
|
|
}
|
|
}
|