mirror of
https://github.com/movie-web/movie-web.git
synced 2025-01-04 05:26:02 +00:00
5ddd8638ec
Co-authored-by: William Oldham <wegg7250@gmail.com>
17 lines
263 B
CSS
17 lines
263 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
html,
|
|
body {
|
|
@apply bg-denim-100 text-denim-700 font-open-sans min-h-screen;
|
|
}
|
|
|
|
#root {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: flex-start;
|
|
min-height: 100vh;
|
|
width: 100%;
|
|
}
|