Normalizing Style Sheets

This commit is contained in:
Belen Curcio
2020-10-15 16:00:11 -03:00
parent a0e5448210
commit ab45e28813
18 changed files with 77 additions and 69 deletions

View File

@@ -6,10 +6,10 @@
}
.item {
@apply mr-6 cursor-pointer relative transition ease-in-out duration-100 text-primary;
@apply mr-6 cursor-pointer relative transition ease-in-out duration-100 text-base;
&:hover {
@apply text-secondary;
@apply text-accents-8;
}
&:last-child {

View File

@@ -29,7 +29,7 @@ const UserNav: FC<Props> = ({ className }) => {
>
<Bag />
{itemsCount > 0 && (
<span className="bg-black h-4 w-4 absolute rounded-full right-3 top-3 text-white flex items-center justify-center font-bold text-xs">
<span className="bg-secondary text-base h-4 w-4 absolute rounded-full right-3 top-3 flex items-center justify-center font-bold text-xs">
{itemsCount}
</span>
)}