fix(frontend): fix toast positioning - move outside drawer, use fixed position

This commit is contained in:
spinline
2026-02-05 21:02:47 +03:00
parent e8da646a91
commit 718fed554f
2 changed files with 4 additions and 3 deletions

View File

@@ -37,8 +37,9 @@ pub fn App() -> impl IntoView {
<Sidebar />
</div>
</div>
<ToastContainer />
</div>
// Toast container - outside drawer for correct fixed positioning
<ToastContainer />
}
}