Push beginning of DB deletion stuff

This commit is contained in:
Dane Everitt 2018-08-25 14:43:21 -07:00
parent c28e9c1ab7
commit 9be2aa4ca9
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
9 changed files with 120 additions and 16 deletions

View file

@ -1,5 +1,6 @@
.btn {
@apply .rounded .p-2;
transition: all 100ms ease-in-out;
/**
* Button Colors
@ -21,7 +22,9 @@
}
&.btn-red {
@apply .bg-red .border-red-dark .border .text-white;
&:not(.btn-secondary) {
@apply .bg-red .border-red-dark .border .text-white;
}
&:hover:enabled {
@apply .bg-red-dark .border-red-darker;
@ -34,6 +37,10 @@
&:hover:enabled {
@apply .border-grey .text-grey-darker;
}
&.btn-red:hover:enabled {
@apply .bg-red-dark .border-red-darker .text-white;
}
}
/**
@ -51,6 +58,10 @@
@apply .px-6 .py-3 .uppercase .tracking-wide .text-sm;
}
&.btn-xs {
@apply .py-2 .px-2 .uppercase .text-xs;
}
&:disabled, &.disabled {
opacity: 0.55;
cursor: default;