Files
studio-up/tailwind/custom/base.css
2025-08-28 13:47:48 +02:00

20 lines
419 B
CSS
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* Custom styles to immediately follow Tailwinds `base` layer
*/
/**
* This uses the background and foreground colors declared in the `theme.json`
* file and is applied both to the front end and in the block editor.
*/
body {
@apply bg-background font-sans;
}
footer {
@apply bg-secondary w-full text-white;
.footer-menu {
@apply mb-4 flex flex-col gap-4 md:flex-row md:justify-center md:gap-8;
}
}