feat: increase the bottom panel height when the task form is opened

This commit is contained in:
Matouš Volf 2024-09-09 18:48:32 +02:00
parent f251c7cce5
commit 6fd78a041f

View File

@ -41,7 +41,7 @@ pub(crate) fn BottomPanel(display_form: Signal<bool>) -> Element {
(false, _, false) => "h-[66px]", (false, _, false) => "h-[66px]",
(false, _, true) => "h-[130px]", (false, _, true) => "h-[130px]",
(true, Route::ProjectsPage, _) => "h-[130px]", (true, Route::ProjectsPage, _) => "h-[130px]",
(true, _, _) => "h-[448px]", (true, _, _) => "h-[506px]",
} }
), ),
if expanded() { if expanded() {