mirror of
https://github.com/Spythere/srjp-td2.git
synced 2026-05-03 05:28:12 +00:00
27 lines
296 B
CSS
27 lines
296 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
:root {
|
|
color-scheme: dark;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
display: flex;
|
|
min-width: 320px;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
#app {
|
|
max-width: 1280px;
|
|
margin: 0 auto;
|
|
padding: 2rem;
|
|
}
|
|
|
|
@media print {
|
|
:root {
|
|
color-scheme: light;
|
|
}
|
|
}
|