movie-web/src/index.css

17 lines
263 B
CSS
Raw Normal View History

@tailwind base;
@tailwind components;
@tailwind utilities;
2022-02-10 23:45:17 +01:00
html,
body {
2022-02-16 21:30:12 +01:00
@apply bg-denim-100 text-denim-700 font-open-sans min-h-screen;
2022-02-10 23:45:17 +01:00
}
#root {
display: flex;
justify-content: flex-start;
align-items: flex-start;
min-height: 100vh;
width: 100%;
}