🐛(frontend) fix double scrollbar on document grid

The document grid was showing a double scrollbar.
It was due to the sr-only class having a width and
height of 1px.
We changed it to 0px, it is now fixed.
This commit is contained in:
Anthony LC
2025-10-14 11:23:09 +02:00
parent 127c90ca5f
commit af3d90db3b

View File

@@ -92,9 +92,10 @@ nextjs-portal {
/* Screen reader only - visually hidden but accessible to screen readers */
.sr-only {
position: absolute !important;
position: fixed !important;
width: 1px !important;
height: 1px !important;
transform: translateX(-100vw) !important;
padding: 0 !important;
margin: -1px !important;
overflow: hidden !important;