21 lines
372 B
CSS
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;
|
|
}
|
|
} |