Przeglądaj źródła

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

tofarr 1 rok temu
rodzic
commit
58d22a1905
1 zmienionych plików z 1 dodań i 1 usunięć
  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}
           {label}
         </div>
         </div>
       )}
       )}
-      <div className="overflow-scroll h-full rounded-b-xl">{children}</div>
+      <div className="overflow-hidden h-full rounded-b-xl">{children}</div>
     </div>
     </div>
   );
   );
 }
 }