mirror of
https://github.com/mue/mue.git
synced 2026-07-09 05:34:20 +02:00
fix: lightbox, breadcrumbs, navbar, uninstall
This commit is contained in:
@@ -49,8 +49,8 @@ function ModalTopBar({
|
||||
// Get the last breadcrumb item (the item name)
|
||||
const lastCrumb = iframeBreadcrumbs[iframeBreadcrumbs.length - 1];
|
||||
|
||||
// Add current section if available
|
||||
if (currentSection) {
|
||||
// Add current section if available and different from the last crumb
|
||||
if (currentSection && currentSection !== lastCrumb.label) {
|
||||
breadcrumbPath.push({
|
||||
label: currentSection,
|
||||
onClick: () => onBack(), // Clickable to go back
|
||||
|
||||
@@ -1,11 +1,21 @@
|
||||
@use 'scss/variables' as *;
|
||||
|
||||
.modalTopBar {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 10;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 1.5rem 1.5rem;
|
||||
// width: 100%;
|
||||
|
||||
@include themed {
|
||||
background: t($modal);
|
||||
}
|
||||
|
||||
backdrop-filter: blur(10px);
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
||||
|
||||
.topBarLeft {
|
||||
display: flex;
|
||||
|
||||
Reference in New Issue
Block a user