19 lines
325 B
CSS
19 lines
325 B
CSS
@import "tailwindcss";
|
|
|
|
/* 8px spacing rhythm — use Tailwind scale steps 2, 4, 6, 8, 12, 16 (8, 16, 24, 32, 48, 64 px) */
|
|
@layer base {
|
|
html {
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
min-height: 100svh;
|
|
}
|
|
|
|
#app {
|
|
min-height: 100svh;
|
|
}
|
|
}
|