Skip to content

Commit

Permalink
fix(web): adjusted offset value to match header height (immich-app#3302)
Browse files Browse the repository at this point in the history
  • Loading branch information
KailashGanesh authored Jul 16, 2023
1 parent 9012cf6 commit c8f1a15
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
let animationTick = false;
const { isAlbumAssetSelectionOpen } = albumAssetSelectionStore;
$: offset = $isAlbumAssetSelectionOpen ? 100 : 71;
$: offset = $isAlbumAssetSelectionOpen ? 100 : 76;
const dispatchClick = createEventDispatcher<OnScrollbarClick>();
const dispatchDrag = createEventDispatcher<OnScrollbarDrag>();
$: {
Expand Down

0 comments on commit c8f1a15

Please sign in to comment.