feat(layout): add a sticky page header

- keep action bar, breadcrumb, dropzone visible even during scroll down
This commit is contained in:
Edouard Vanbelle
2026-04-08 10:38:36 +02:00
parent 2e8e0ef6c5
commit 669623adbe
2 changed files with 59 additions and 47 deletions
+9
View File
@@ -13,6 +13,15 @@
color: #2d3748;
}
.page-sticky-header {
position: sticky;
margin: 0px;
padding: 10px 0px;
top: -20px; /* due to padding top of content-area */
background-color: var(--color-bg-page);
z-index: 100; /* ensure header is above image preview */
}
.actions-bar {
display: flex;
justify-content: space-between;