mirror of
https://github.com/vercel/commerce.git
synced 2025-07-04 12:11:22 +00:00
29 lines
444 B
CSS
29 lines
444 B
CSS
.root {
|
|
@apply relative;
|
|
}
|
|
|
|
.list {
|
|
@apply flex flex-row items-center justify-items-end h-full;
|
|
}
|
|
|
|
.item {
|
|
@apply mr-6 cursor-pointer relative transition ease-in-out duration-100 flex items-center outline-none text-secondary;
|
|
|
|
&:last-child {
|
|
@apply mr-0;
|
|
}
|
|
|
|
&:focus,
|
|
&:active {
|
|
@apply outline-none;
|
|
}
|
|
}
|
|
|
|
.avatarButton {
|
|
@apply inline-flex justify-center rounded-full;
|
|
}
|
|
|
|
.avatarButton:focus {
|
|
@apply outline-none;
|
|
}
|