restyle current date state

This commit is contained in:
lenhanphung
2026-02-05 14:22:32 +07:00
parent 309ac0d23b
commit ec258f4d42
12 changed files with 55 additions and 38 deletions
+20 -15
View File
@@ -50,21 +50,26 @@ export function SettingsTab({
<>
{/* Form group 1: Name field - first group, margin top 0 */}
<Box mt={0}>
<TextField
fullWidth
label=""
inputProps={{ "aria-label": t("common.name") }}
placeholder={t("common.name")}
value={name}
onChange={(e) => setName(e.target.value)}
size="small"
sx={{
"&.MuiFormControl-root": {
marginTop: 0,
marginBottom: 0,
},
}}
/>
<Typography variant="h6" sx={{ margin: 0 }}>
{t("calendarPopover.settings.calendarName")}
</Typography>
<Box sx={{ marginTop: "6px" }}>
<TextField
fullWidth
label=""
inputProps={{ "aria-label": t("common.name") }}
placeholder={t("common.name")}
value={name}
onChange={(e) => setName(e.target.value)}
size="small"
sx={{
"&.MuiFormControl-root": {
marginTop: 0,
marginBottom: 0,
},
}}
/>
</Box>
</Box>
{/* Form group 2: Description */}