Add view for editing the details of a schedule

This commit is contained in:
Dane Everitt 2020-02-22 20:07:56 -08:00
parent f180e3ef0b
commit 3820d4e156
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
11 changed files with 334 additions and 53 deletions

View file

@ -47,14 +47,6 @@ input[type=number] {
&:disabled {
@apply .bg-neutral-100 .border-neutral-200;
}
& + .input-help {
@apply .text-xs .text-neutral-400 .pt-2;
&.error {
@apply .text-red-600;
}
}
}
.input-dark:not(select) {
@ -70,7 +62,7 @@ input[type=number] {
}
& + .input-help {
@apply .text-xs .text-neutral-400 .mt-2
@apply .text-xs .text-neutral-400;
}
&.error {
@ -86,6 +78,14 @@ input[type=number] {
}
}
.input-help {
@apply .text-xs .text-neutral-400 .pt-2;
&.error {
@apply .text-red-400;
}
}
label {
@apply .block .text-xs .uppercase .text-neutral-700 .mb-2;
}