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

@@ -1,12 +1,12 @@
.root {
@apply text-secondary cursor-pointer inline-flex px-10 rounded-sm leading-6
@apply text-accents-8 cursor-pointer inline-flex px-10 rounded-sm leading-6
bg-secondary transition ease-in-out duration-150 shadow-sm font-semibold
text-center justify-center uppercase py-4 uppercase text-center focus:outline-none
border border-transparent items-center;
}
.root:hover {
@apply bg-primary-accent text-primary border border-secondary;
@apply bg-primary-2 text-base border border-secondary;
}
.root:focus {

View File

@@ -73,7 +73,7 @@ const Sidebar: FC<Props> = ({ className, children, show = true, close }) => {
leaveTo="translate-x-full"
>
<div className="h-full w-screen max-w-lg">
<div className="h-full flex flex-col text-primary bg-primary-accent shadow-xl overflow-y-auto">
<div className="h-full flex flex-col text-base bg-primary-accent shadow-xl overflow-y-auto">
{children}
</div>
</div>