refactor(ui): move logout button to top-right of app

- Move logout IconButton from sidebar to App component
- Position logout button fixed at top-right corner
- Remove onLogout prop from Bookmarks and BookmarkList components
- Clean up sidebar header by removing logout button
- Add app-header CSS with fixed positioning and high z-index
This commit is contained in:
Gigi
2025-10-03 01:51:03 +02:00
parent 436bbf2b43
commit ef3ce445f5
4 changed files with 24 additions and 27 deletions

View File

@@ -28,6 +28,14 @@ body {
.app {
text-align: center;
position: relative;
}
.app-header {
position: fixed;
top: 1rem;
right: 2rem;
z-index: 1000;
}
.app header {