20 lines
419 B
CSS
20 lines
419 B
CSS
/**
|
||
* Custom styles to immediately follow Tailwind’s `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;
|
||
}
|
||
}
|