Fix design, dark mode and keyboard navigation of the board list

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2020-08-20 16:48:24 +02:00
parent 6699eb7f70
commit 897c42609b
5 changed files with 29 additions and 74 deletions

View File

@@ -189,11 +189,15 @@ export default {
.card {
transition: box-shadow 0.1s ease-in-out;
box-shadow: 0 0 2px 0 var(--color-box-shadow);
border-radius: 3px;
border-radius: var(--border-radius-large);
font-size: 100%;
background-color: var(--color-main-background);
margin-bottom: $card-spacing;
body.dark &, body.theme--dark & {
border: 2px solid var(--color-border);
}
&.current-card {
box-shadow: 0 0 5px 0 var(--color-box-shadow);
}