mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
23 lines
394 B
CSS
23 lines
394 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);
|
|
}
|
|
}
|