adding intermate navbar, footer and navbutton link effects

This commit is contained in:
job 2023-03-06 15:07:33 +01:00
parent ca259ce669
commit 9564294d5a
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer components {
.intermate-navbar {
@apply navbar bg-intermate-yellow shadow-md shadow-intermate-shadow;
}
.intermate-footer {
@apply footer p-10 bg-intermate-yellow text-white justify-around;
}
.intermate-navbutton-effect {
@apply block hover:text-intermate-yellow-hover transition-all hover:scale-110 ease-in-out;
}
}