fix(mobile): backdrop opacity jumping at start

This commit is contained in:
Elian Doran 2025-01-04 00:52:16 +02:00
parent 5b1540e12b
commit 60adc84248
No known key found for this signature in database

View File

@ -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;