mirror of
https://github.com/immich-app/immich.git
synced 2025-01-06 11:56:46 +01:00
fix(web): adjusted offset value to match header height (#3302)
This commit is contained in:
parent
9012cf6946
commit
c8f1a15f21
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@
|
||||||
let animationTick = false;
|
let animationTick = false;
|
||||||
|
|
||||||
const { isAlbumAssetSelectionOpen } = albumAssetSelectionStore;
|
const { isAlbumAssetSelectionOpen } = albumAssetSelectionStore;
|
||||||
$: offset = $isAlbumAssetSelectionOpen ? 100 : 71;
|
$: offset = $isAlbumAssetSelectionOpen ? 100 : 76;
|
||||||
const dispatchClick = createEventDispatcher<OnScrollbarClick>();
|
const dispatchClick = createEventDispatcher<OnScrollbarClick>();
|
||||||
const dispatchDrag = createEventDispatcher<OnScrollbarDrag>();
|
const dispatchDrag = createEventDispatcher<OnScrollbarDrag>();
|
||||||
$: {
|
$: {
|
||||||
|
|
Loading…
Reference in a new issue