Просмотр исходного кода

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

tofarr 1 год назад
Родитель
Сommit
58d22a1905
1 измененных файлов с 1 добавлено и 1 удалено
  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>
   );
 }