2023-12-11 23:38:52 +07:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
|
|
|
:root {
|
|
|
|
color-scheme: light !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
|
|
|
background-color: transparent !important;
|
|
|
|
}
|
|
|
|
|
2023-12-05 13:55:38 +07:00
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
|
|
|
|
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
|
|
|
|
sans-serif;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
height: 100vh;
|
2023-12-11 23:38:52 +07:00
|
|
|
width: 100vw;
|
|
|
|
overflow: hidden;
|
|
|
|
background-color: transparent !important;
|
2023-12-05 13:55:38 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
#root {
|
2023-12-11 23:38:52 +07:00
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
background-color: transparent !important;
|
2023-12-05 13:55:38 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
code {
|
|
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
|
|
|
monospace;
|
2023-12-11 23:38:52 +07:00
|
|
|
}
|