Files
ga-covid.thederf.com/src/assets/base.css
Joshua Bemenderfer bac61fe227 Initial commit.
2021-12-28 21:52:58 -05:00

22 lines
416 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
@tailwind typography;
a.link {
@apply underline text-violet-700;
}
.input {
@apply inline-block h-11 m-2 p-2 px-3 rounded-lg bg-white border border-indigo-100 outline-none
transition-shadow shadow shadow-indigo-200 hover:border-indigo-400 focus:border-indigo-600 active:border-indigo-600;
}
select {
@apply input;
}
input {
@apply input;
}