movie-web/src/setup/index.css

19 lines
272 B
CSS
Raw Normal View History

@tailwind base;
@tailwind components;
@tailwind utilities;
2022-02-10 23:45:17 +01:00
html,
body {
2023-01-07 21:36:18 +01:00
@apply bg-denim-100 text-denim-700 font-open-sans min-h-screen overflow-x-hidden;
2022-02-10 23:45:17 +01:00
}
#root {
2023-01-07 21:36:18 +01:00
padding: 0.05px;
min-height: 100vh;
width: 100%;
}
2023-01-08 22:29:38 +01:00
body[data-no-select] {
user-select: none;
}