fix width

This commit is contained in:
Viktor Rådberg
2024-05-10 23:23:32 +02:00
parent 92be2e56d4
commit adb79bf0e8

View File

@@ -35,7 +35,7 @@ const standardSettings: Pick<
orientation: Orientation.Landscape, orientation: Orientation.Landscape,
}; };
const MainWrapper = twc.div`w-full h-fit pb-24 overflow-hidden items-center flex flex-col min-[349px]:pb-10`; const MainWrapper = twc.div`h-fit pb-24 overflow-hidden items-center flex flex-col min-[349px]:pb-10`;
const StartButtonFooter = twc.div`w-full max-w-[548px] fixed bottom-4 z-1 items-center flex flex-row flex-wrap px-4 z-10 gap-4`; const StartButtonFooter = twc.div`w-full max-w-[548px] fixed bottom-4 z-1 items-center flex flex-row flex-wrap px-4 z-10 gap-4`;
@@ -173,7 +173,7 @@ const Start = () => {
<InfoDialog dialogRef={infoDialogRef} /> <InfoDialog dialogRef={infoDialogRef} />
<SettingsDialog dialogRef={settingsDialogRef} /> <SettingsDialog dialogRef={settingsDialogRef} />
<div className="flex justify-center items-center w-screen">
<MainWrapper> <MainWrapper>
<Info <Info
className="size-8 absolute top-4 left-4 text-primary-main" className="size-8 absolute top-4 left-4 text-primary-main"
@@ -344,6 +344,7 @@ const Start = () => {
)} )}
</StartButtonFooter> </StartButtonFooter>
</MainWrapper> </MainWrapper>
</div>
</> </>
); );
}; };