12 lines
289 B
CSS
12 lines
289 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 text-foreground font-sans;
|
||
}
|