18 lines
381 B
CSS
18 lines
381 B
CSS
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
|
|
|
|
|
@layer components {
|
|
.intermate-navbar {
|
|
@apply navbar bg-primary;
|
|
}
|
|
.intermate-footer {
|
|
@apply footer p-10 bg-primary text-white justify-around;
|
|
}
|
|
.intermate-navbutton-effect {
|
|
@apply block hover:text-primary-focus transition-all hover:scale-110 ease-in-out;
|
|
}
|
|
} |