diff --git a/apps/thu-info-app/src/ui/home/home.tsx b/apps/thu-info-app/src/ui/home/home.tsx index 3a643d7bc..4e14717e9 100644 --- a/apps/thu-info-app/src/ui/home/home.tsx +++ b/apps/thu-info-app/src/ui/home/home.tsx @@ -323,12 +323,12 @@ export const AnnouncementSection = () => { ({id, read, title, content}) => ( dispatch(toggleReadStatus(id))} - style={{marginVertical: 4, marginHorizontal: 12}} + style={{marginTop: 8, marginHorizontal: 8}} key={id}> {title} {read ? "(已读)" : ""} - {!read && {content}} + {!read && {content}} ) )} @@ -470,7 +470,10 @@ export const HomeScheduleSection = () => { return ( {getStr("schedulePreview")} - + {getLocale() === zh ? `${now.month() + 1}月${now.date()}日 ${dayZh[today]}` @@ -1060,7 +1063,7 @@ const styles = themedStyles((theme) => ({ paddingHorizontal: 12, paddingTop: 8, paddingBottom: 16, - minHeight: 92, // this value is produced by trying many times... + // minHeight: 92, // this value is produced by trying many times... }, SectionTitle: { textAlign: "left",