From 03ff925fc6c5599c43465d308a8eb56e7376cfd3 Mon Sep 17 00:00:00 2001 From: ezwelty Date: Tue, 26 Nov 2024 21:49:28 +0100 Subject: [PATCH] Reduce anchor height to zero --- src/components/photo/PhotoUploader.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/photo/PhotoUploader.js b/src/components/photo/PhotoUploader.js index 729c2934..6cf944aa 100644 --- a/src/components/photo/PhotoUploader.js +++ b/src/components/photo/PhotoUploader.js @@ -7,8 +7,7 @@ import { addPhoto } from '../../utils/api' import { PhotoOrganizer } from './PhotoOrganizer' const ScrollAnchor = styled.div` - height: 100px; - margin-top: -100px; + height: 0px; pointer-events: none; `