Add support for non-existent files being edited

This commit is contained in:
Dane Everitt 2019-05-27 16:30:23 -07:00
parent bfdc1f766b
commit 06337e45d8
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
4 changed files with 84 additions and 28 deletions

View file

@ -65,6 +65,10 @@ input[type=number] {
}
}
.input:disabled {
@apply .bg-neutral-100 .border-neutral-200;
}
select:not(.appearance-none) {
@apply .outline-none .appearance-none .block .bg-white .border .border-neutral-200 .text-neutral-400 .p-3 .pr-8 rounded;
transition: border-color 150ms linear, color 150ms linear;
@ -86,7 +90,11 @@ select:not(.appearance-none) {
}
.input-label {
@apply .block .uppercase .tracking-wide .text-neutral-800 .text-xs .font-bold .mb-2;
@apply .block .uppercase .tracking-wide .text-neutral-800 .text-xs .font-bold;
&:not(.mb-0) {
@apply .mb-2;
}
}
.input-help {