mirror of
https://github.com/zadam/trilium.git
synced 2025-11-17 18:50:41 +01: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