From 86533153bfa1822a3692bd10769ca5100f3783c6 Mon Sep 17 00:00:00 2001 From: Zoe Roux Date: Tue, 6 Jun 2023 15:41:51 +0900 Subject: [PATCH] Allow the login page to be scrolled --- front/packages/ui/src/login/form.tsx | 26 +++++++------------------- 1 file changed, 7 insertions(+), 19 deletions(-) diff --git a/front/packages/ui/src/login/form.tsx b/front/packages/ui/src/login/form.tsx index e862b484..99ecbada 100644 --- a/front/packages/ui/src/login/form.tsx +++ b/front/packages/ui/src/login/form.tsx @@ -20,7 +20,7 @@ import { ts } from "@kyoo/primitives"; import { ReactNode } from "react"; -import { ImageBackground, ImageProps, Platform, View } from "react-native"; +import { ScrollView, ImageBackground, ImageProps, Platform, View } from "react-native"; import Svg, { SvgProps, Path } from "react-native-svg"; import { min, percent, px, Stylable, useYoshiki, vh, vw } from "yoshiki/native"; @@ -28,7 +28,7 @@ const SvgBlob = (props: SvgProps) => { const { css, theme } = useYoshiki(); return ( - + theme.dark.background, })} > - + - - - {children} - - + {children} + ); };