commerce/site/components/common/UserNav/CustomerMenuContent/CustomerMenuContent.module.css
2022-03-15 12:17:29 +01:00

25 lines
376 B
CSS

.link {
@apply text-primary flex cursor-pointer px-6 py-3
transition ease-in-out duration-150 leading-6
font-medium items-center capitalize w-full box-border
outline-0;
}
.link:hover {
@apply bg-accent-1 outline-none;
}
.link.active {
@apply font-bold bg-accent-2;
}
.root {
display: hidden;
}
@media (min-width: 767px) {
.root {
display: block;
}
}