39 lines
637 B
CSS
39 lines
637 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
:root {
|
|
font-family: 'Lato', sans-serif;
|
|
font-size: 16px;
|
|
/* height: 100%; */
|
|
}
|
|
/*
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
overflow: hidden;
|
|
min-height: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
#root {
|
|
height: 100%;
|
|
width: 100%;
|
|
background-color: #f5f5f5;
|
|
} */
|
|
/*
|
|
@media (prefers-color-scheme: light) {
|
|
:root {
|
|
color: #213547;
|
|
background-color: #ffffff;
|
|
}
|
|
a:hover {
|
|
color: #747bff;
|
|
}
|
|
button {
|
|
background-color: #f9f9f9;
|
|
}
|
|
} */
|