mars-v2-frontend/styles/globals.css

32 lines
581 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;
color: white;
2022-09-02 11:17:39 +00:00
}
a {
color: inherit;
text-decoration: none;
}
* {
box-sizing: border-box;
}
/* 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;
}