mirror of
https://github.com/movie-web/movie-web.git
synced 2024-11-15 12:15:09 +01:00
19 lines
272 B
CSS
19 lines
272 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
html,
|
|
body {
|
|
@apply bg-denim-100 text-denim-700 font-open-sans min-h-screen overflow-x-hidden;
|
|
}
|
|
|
|
#root {
|
|
padding: 0.05px;
|
|
min-height: 100vh;
|
|
width: 100%;
|
|
}
|
|
|
|
body[data-no-select] {
|
|
user-select: none;
|
|
}
|