mirror of
https://github.com/p-stream/p-stream.git
synced 2026-04-04 16:59:56 +00:00
21 lines
324 B
CSS
21 lines
324 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
html,
|
|
body {
|
|
@apply bg-denim-100 text-denim-700 font-open-sans overflow-x-hidden;
|
|
min-height: 100vh;
|
|
min-height: 100dvh;
|
|
}
|
|
|
|
#root {
|
|
padding: 0.05px;
|
|
min-height: 100vh;
|
|
min-height: 100dvh;
|
|
width: 100%;
|
|
}
|
|
|
|
body[data-no-select] {
|
|
user-select: none;
|
|
}
|