mirror of
https://github.com/m1ngsama/FUJI.git
synced 2025-12-24 10:51:27 +00:00
fix overflow
This commit is contained in:
parent
2a7e5bf861
commit
1bd9d9551b
1 changed files with 79 additions and 81 deletions
|
|
@ -188,10 +188,9 @@ export default function Schedule() {
|
|||
}, [focusedDate, groupedEvents])
|
||||
|
||||
return (
|
||||
<div className="flex justify-center">
|
||||
<section className="box-border max-w-[1024px] px-[22px] mb-24 flex grow">
|
||||
<div className="grow">
|
||||
<div className="my-8 text-2xl font-bold w-full">日程</div>
|
||||
<div className="box-border flex justify-center">
|
||||
<section className="max-w-[1024px] px-[22px] mb-24 flex flex-col w-full">
|
||||
<div className="my-8 text-2xl font-bold">日程</div>
|
||||
<Alert
|
||||
title="你可以在日历 App 中订阅我们的日程"
|
||||
className="my-4 items-center"
|
||||
|
|
@ -210,9 +209,9 @@ export default function Schedule() {
|
|||
</Button>
|
||||
)}
|
||||
/>
|
||||
<div className="flex gap-8 w-full pt-4">
|
||||
<div className="flex flex-col sm:flex-row gap-8 pt-4">
|
||||
<div className="flex flex-col grow">
|
||||
<div className="text-2xl font-bold">
|
||||
<div className="text-2xl font-bold w-full">
|
||||
{
|
||||
dayjs(focusedDate.toDate()).format("MMMM YYYY")
|
||||
}
|
||||
|
|
@ -275,7 +274,6 @@ export default function Schedule() {
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue