diff --git a/app/tests/[id].tsx b/app/tests/[id].tsx index d826ebc..bffe46e 100644 --- a/app/tests/[id].tsx +++ b/app/tests/[id].tsx @@ -61,7 +61,7 @@ const TestScreen = () => { {data.questions?.map((question) => ( - + router.push(`/questions/${question.id}`)} /> ))} diff --git a/components/ui/content.tsx b/components/ui/content.tsx index 2fa18ae..b753e37 100644 --- a/components/ui/content.tsx +++ b/components/ui/content.tsx @@ -8,7 +8,7 @@ interface ContentProps extends ScrollViewProps { const Content = forwardRef(({ children, style, ...rest }, ref) => { return ( - + {children} ); @@ -18,7 +18,9 @@ Content.displayName = "Content"; const styles = StyleSheet.create({ content: { - padding: ContentPadding + paddingHorizontal: ContentPadding, + paddingTop: ContentPadding + 30, + paddingBottom: ContentPadding + 20 } }); diff --git a/components/ui/custom-select/index.tsx b/components/ui/custom-select/index.tsx index 36b8398..811e104 100644 --- a/components/ui/custom-select/index.tsx +++ b/components/ui/custom-select/index.tsx @@ -36,7 +36,7 @@ const CustomSelect = ({ return (