Explorar o código

Fix for issue where double scroll hides save button (#5488)

tofarr hai 1 ano
pai
achega
58d22a1905
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      frontend/src/components/layout/container.tsx

+ 1 - 1
frontend/src/components/layout/container.tsx

@@ -39,7 +39,7 @@ export function Container({
           {label}
         </div>
       )}
-      <div className="overflow-scroll h-full rounded-b-xl">{children}</div>
+      <div className="overflow-hidden h-full rounded-b-xl">{children}</div>
     </div>
   );
 }