From 4f25a1aefb9d9984fbc849015ac97a1588fd113d Mon Sep 17 00:00:00 2001 From: exyi Date: Wed, 30 Sep 2020 22:22:44 +0000 Subject: [PATCH] Border radius for TaskPanel --- frontend/src/TaskPanel.svelte | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/src/TaskPanel.svelte b/frontend/src/TaskPanel.svelte index a34f46a..4163648 100644 --- a/frontend/src/TaskPanel.svelte +++ b/frontend/src/TaskPanel.svelte @@ -66,6 +66,7 @@ background-color: #111111; box-sizing: border-box; z-index: 120; + border-radius: 30px; } @media only screen and (max-width: 600px) { .panel { @@ -83,6 +84,8 @@ /* Used when the user hovers over a node and we want to show that there is something - a small expandable preview */ .panel.preview, .panel:not(.full):hover { height: 100px; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } .panel.full { min-height: 100%;