Fixed cancel of dashboard edit.

This commit is contained in:
Mike Cao 2022-08-04 14:30:09 -07:00
parent 1d4aa7c535
commit 42e87a4691
3 changed files with 39 additions and 24 deletions

View file

@ -6,13 +6,7 @@
}
.item {
padding: 20px;
border-radius: 5px;
border: 1px solid var(--gray300);
}
.item + .item {
margin-top: 10px;
padding: 5px 0;
}
.item h1 {
@ -25,6 +19,18 @@
color: var(--gray700);
}
.text {
padding: 20px;
border-radius: 5px;
border: 1px solid var(--gray400);
background: var(--gray50);
}
.active .text {
border-color: var(--gray600);
box-shadow: 4px 4px 4px var(--gray100);
}
.dragActive {
cursor: grab;
}