Skip to content

Commit

Permalink
Reduce min-width (vertical phone screens)
Browse files Browse the repository at this point in the history
  • Loading branch information
mbeckem committed Oct 29, 2024
1 parent ac39468 commit 984b300
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/packages/runtime/ErrorScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const isDev = import.meta.env.DEV;
export function ErrorScreen(props: { intl: PackageIntl; error: Error }) {
const intl = props.intl;
return (
<Box width="100%" height="100%" minWidth="500px" minHeight="150px">
<Box width="100%" height="100%" minWidth="350px" minHeight="150px">
<VStack padding={4} width="100%" height="100%">
<Heading size="md">{intl.formatMessage({ id: "title" })}</Heading>
<Alert status="error" maxWidth={550} borderRadius="4px" mt={2}>
Expand Down

0 comments on commit 984b300

Please sign in to comment.