mirror of
https://github.com/zadam/trilium.git
synced 2026-05-07 03:27:20 +02:00
fix(mobile): backdrop opacity jumping at start
This commit is contained in:
@@ -60,7 +60,7 @@ export default class SidebarContainer extends FlexContainer {
|
||||
this.sidebarEl.style.transition = "none";
|
||||
this.backdropEl.style.transition = "none";
|
||||
|
||||
this.backdropEl.style.opacity = Math.max(0, 1 + (this.translatePercentage / 100));
|
||||
this.backdropEl.style.opacity = (this.currentTranslate === -100 ? 0 : 1);
|
||||
this.backdropEl.classList.add("show");
|
||||
|
||||
this.dragState = DRAG_STATE_DRAGGING;
|
||||
|
||||
Reference in New Issue
Block a user