lr_boilerplate/web/src/index.css
2024-02-24 09:54:32 +07:00

39 lines
932 B
CSS

@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Goldman:wght@400;700&display=swap')
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
color-scheme: light !important;
}
html {
background-color: transparent !important;
}
body {
margin: 0;
font-family: "Goldman", '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;
width: 100vw;
overflow: hidden;
background-color: transparent !important;
}
#root {
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
background-color: transparent !important;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}