Fix ToS page in dark mode (#1091)

This commit is contained in:
AbdBarho
2023-02-04 14:39:50 +01:00
committed by GitHub
parent af0711e505
commit b724b37d4c
+7 -5
View File
@@ -179,11 +179,13 @@ const TermsOfServicePage = () => {
<title>Terms of Service - Open Assistant</title>
<meta name="description" content="Open Assistant's Terms of Service" />
</Head>
<Box fontFamily="Inter" p="6" className="oa-basic-theme max-w-4xl mx-auto">
<Heading as="h1" size="xl" color="blue.500" mb="6">
Terms of Service
</Heading>
<TermsOfService />
<Box fontFamily="Inter" p="6" className="oa-basic-theme">
<Box className="max-w-4xl mx-auto">
<Heading as="h1" size="xl" color="blue.500" mb="6">
Terms of Service
</Heading>
<TermsOfService />
</Box>
</Box>
</>
);