feat: make breadcrumbs sticky on file list view

This commit is contained in:
Ramires Viana 2025-07-24 22:28:18 -03:00 committed by Henrique Dias
parent 03cad4fb0e
commit 702e87f95c
2 changed files with 5 additions and 0 deletions

View File

@ -96,6 +96,9 @@ main {
height: 3em; height: 3em;
background: var(--background); background: var(--background);
border-bottom: 1px solid var(--divider); border-bottom: 1px solid var(--divider);
position: sticky;
z-index: 1000;
top: 4em;
} }
.breadcrumbs span, .breadcrumbs span,

View File

@ -351,6 +351,8 @@ main .spinner .bounce2 {
#editor-container .breadcrumbs { #editor-container .breadcrumbs {
height: 2.3em; height: 2.3em;
padding: 0 1em; padding: 0 1em;
position: relative;
top: 0;
} }
/*** RTL - flip and position arrow of path ***/ /*** RTL - flip and position arrow of path ***/