fix: improve empty state and loading visibility in mobile sidepanes

This commit is contained in:
Gigi
2025-10-10 17:23:12 +01:00
parent cb859ae599
commit 7ffd37289d

View File

@@ -492,12 +492,24 @@ body.mobile-sidebar-open {
text-align: center;
padding: 3rem;
color: #888;
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.empty-state p {
margin: 0.5rem 0;
}
.loading {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
}
.bookmarks-list {
display: flex;
flex-direction: column;
@@ -618,6 +630,13 @@ body.mobile-sidebar-open {
height: 100%;
}
/* Remove borders from containers in mobile overlays */
.pane.sidebar .bookmarks-container,
.pane.highlights .highlights-container {
border: none;
border-radius: 0;
}
/* Bookmarks sidebar from left */
.pane.sidebar {
left: 0;