fix: Don't allow gallery to scroll horizontally (#2428)

- Closes: #2424
This commit is contained in:
Dermot Duffy
2026-06-30 17:45:12 -07:00
committed by dermotduffy
parent 1cd5520154
commit 55732ead1d
4 changed files with 5 additions and 4 deletions
-2
View File
@@ -1,2 +0,0 @@
@use 'basic-block.scss';
@use 'media-gallery.scss';
+4 -1
View File
@@ -2,7 +2,10 @@
width: 100%;
height: 100%;
display: block;
overflow: auto;
// See: https://github.com/dermotduffy/advanced-camera-card/issues/2424
overflow-x: clip;
overflow-y: auto;
// Hide scrollbar: IE and Edge
-ms-overflow-style: none;