cal/styles/globals.css
2021-03-22 13:48:48 +00:00

21 lines
372 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
@import './components/buttons.css';
@import './components/spinner.css';
body {
background-color: #f3f4f6;
}
.text-white-important {
color: white !important;
}
@layer utilities {
.transition-max-width {
-webkit-transition-property: max-width;
transition-property: max-width;
}
}