mars-v2-frontend/styles/globals.css

41 lines
697 B
CSS
Raw Normal View History

2022-09-02 14:30:58 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2022-09-02 11:17:39 +00:00
html,
body {
padding: 0;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}
a {
color: inherit;
text-decoration: none;
}
* {
box-sizing: border-box;
}
@media (prefers-color-scheme: dark) {
html {
color-scheme: dark;
}
body {
color: white;
background: black;
}
}
/* react-toastify */
/* https://fkhadra.github.io/react-toastify/how-to-style#override-css-variables */
.Toastify__toast {
@apply text-sm;
}
.Toastify__toast-theme--colored.Toastify__toast--success {
@apply bg-green-500;
}