23 lines
686 B
CSS
23 lines
686 B
CSS
/**
|
||
* Custom styles to immediately follow Tailwind’s `base` layer
|
||
*
|
||
* “Add things like base typography styles [or] opinionated global resets.”
|
||
*
|
||
* — from https://tailwindcss.com/docs/plugins#adding-base-styles
|
||
*/
|
||
|
||
/**
|
||
* This uses the background and foreground colors declared in the
|
||
* `theme.json` file and is applied both to the frontend and in the block
|
||
* editor.
|
||
*/
|
||
body {
|
||
@apply bg-background text-foreground font-sans;
|
||
}
|
||
|
||
|
||
.glow{
|
||
--tw-shadow: inset 0px 0px 3px 3px rgb(0 0 0 / 0.05);
|
||
--tw-shadow-colored: inset 0px 0px 3px 3px var(--tw-shadow-color);
|
||
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
||
} |