Files
metabuilder/frontends/dbal/app/globals.css

23 lines
372 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
font-family: 'IBM Plex Sans', system-ui, sans-serif;
color-scheme: dark;
}
* {
box-sizing: border-box;
}
@layer base {
body {
margin: 0;
min-height: 100vh;
background-color: theme('colors.background');
color: theme('colors.foreground');
font-family: var(--font-body);
}
}