Initial commit.

This commit is contained in:
Joshua Bemenderfer
2021-12-28 21:52:58 -05:00
commit bac61fe227
85 changed files with 1317616 additions and 0 deletions

21
src/assets/base.css Normal file
View File

@@ -0,0 +1,21 @@
@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;
}