cal.pub0.org/styles/globals.css

21 lines
372 B
CSS
Raw Normal View History

2021-03-22 13:48:48 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
@import './components/buttons.css';
@import './components/spinner.css';
2021-03-10 10:02:39 +00:00
body {
2021-03-22 13:48:48 +00:00
background-color: #f3f4f6;
2021-03-10 10:02:39 +00:00
}
2021-03-22 13:48:48 +00:00
.text-white-important {
color: white !important;
2021-03-10 10:02:39 +00:00
}
2021-03-22 13:48:48 +00:00
@layer utilities {
.transition-max-width {
-webkit-transition-property: max-width;
transition-property: max-width;
}
}