Push beginning of DB deletion stuff
This commit is contained in:
parent
c28e9c1ab7
commit
9be2aa4ca9
9 changed files with 120 additions and 16 deletions
|
@ -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;
|
||||
|
|
Reference in a new issue