From b060b4b9bf567a35de78a0aa56b66af42b58ec79 Mon Sep 17 00:00:00 2001 From: keiko233 Date: Fri, 20 Oct 2023 10:05:03 +0800 Subject: [PATCH] feat: settings use Grid layout --- src/pages/settings.tsx | 28 ++++++++++++++++++---------- 1 file changed, 18 insertions(+), 10 deletions(-) diff --git a/src/pages/settings.tsx b/src/pages/settings.tsx index 039513b..c52cbfd 100644 --- a/src/pages/settings.tsx +++ b/src/pages/settings.tsx @@ -1,4 +1,4 @@ -import { IconButton, Paper } from "@mui/material"; +import { Grid, IconButton, Paper } from "@mui/material"; import { useLockFn } from "ahooks"; import { useTranslation } from "react-i18next"; import { BasePage, Notice } from "@/components/base"; @@ -33,17 +33,25 @@ const SettingPage = () => { } > - - - + + + + + + - - - + + + + + - - - + + + + + + ); };