Fixed layout
Some checks failed
Deploy to Firebase Hosting on merge / build_and_deploy (push) Has been cancelled

This commit is contained in:
Jarrod Norwell 2024-10-08 20:05:57 +08:00
parent 8dee372884
commit 5e1ace873c

View File

@ -6,7 +6,6 @@ import {
VisuallyHidden
} from "@mantine/core";
import { theme } from "./theme";
import classes from './App.module.css';
export default function App() {
const changes = [
@ -290,8 +289,7 @@ export default function App() {
return (
<MantineProvider theme={theme} forceColorScheme={date.getHours() >= 7 && date.getHours() <= 19 ? "light" : "dark"}>
<Container>
<Flex align={'center'} justify={'center'} h={'100vh'}>
<Container my={'xl'}>
<Stack>
<Anchor href='https://twitter.com/antique_codes' ta={'center'} target='_blank'>
@antique_codes
@ -341,14 +339,13 @@ export default function App() {
<Title order={2}>
Changes
</Title>
<Accordion classNames={classes} radius={'lg'} variant="contained">
<Accordion radius={'lg'} variant="contained">
{items}
</Accordion>
<Text c={'red'}>
Please backup and delete all folders within the Sudachi directory, this will fix the downloadable content and updates issue
</Text>
</Stack>
</Flex>
</Container>
</MantineProvider>
);