initial commit

This commit is contained in:
2022-01-04 13:27:11 -07:00
parent 3764dad884
commit aed6ca46c2
63 changed files with 3780 additions and 1 deletions

View File

@ -0,0 +1,23 @@
.button {
@apply flex flex-row items-center;
}
.button-primary {
@apply border-blue-300 bg-gradient-to-br from-blue-400 to-blue-700;
}
.button-secondary {
@apply border-indigo-300 bg-gradient-to-br from-indigo-400 to-indigo-700;
}
.button-tertiary {
@apply border-blue-300 bg-gradient-to-br from-green-400 to-blue-500;
}
.button-success {
@apply border-green-300 bg-gradient-to-br from-green-400 to-green-700;
}
.button-danger {
@apply border-red-300 bg-gradient-to-br from-red-400 to-red-700;
}