Add edit UI

Move to keyed structure instead of list
This commit is contained in:
Leigh Morresi
2021-01-29 10:49:05 +01:00
parent 1629dee6a5
commit b7a0c2dbcd
7 changed files with 185 additions and 73 deletions

View File

@@ -120,3 +120,40 @@ body:after, body:before {
max-width: 400px;
display: block;
}
.edit-form {
background: #fff;
padding: 2em;
border-radius: 5px;
}
.button-secondary {
color: white;
border-radius: 4px;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
.button-success {
background: rgb(28, 184, 65);
/* this is a green */
}
.button-error {
background: rgb(202, 60, 60);
/* this is a maroon */
}
.button-warning {
background: rgb(223, 117, 20);
/* this is an orange */
}
.button-secondary {
background: rgb(66, 184, 221);
/* this is a light blue */
}
.button-cancel {
background: rgb(200, 200, 200);
/* this is a green */
}