mirror of
https://github.com/immich-app/immich.git
synced 2025-01-04 02:46:47 +01:00
fix(web): prevent layout change from scrollbar in admin setings (#6482)
stable scrollbar
This commit is contained in:
parent
20c284407c
commit
b4d1470586
2 changed files with 5 additions and 1 deletions
|
@ -132,4 +132,8 @@ input:focus-visible {
|
||||||
display: none;
|
display: none;
|
||||||
scrollbar-width: none;
|
scrollbar-width: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.scrollbar-stable {
|
||||||
|
scrollbar-gutter: stable both-edges;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
<div class="{scrollbarClass} absolute {hasTitleClass} w-full overflow-y-auto">
|
<div class="{scrollbarClass} scrollbar-stable absolute {hasTitleClass} w-full overflow-y-auto">
|
||||||
<slot />
|
<slot />
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
Loading…
Reference in a new issue