diff --git a/src/components/App.tsx b/src/components/App.tsx index b8f85bf..d465b79 100644 --- a/src/components/App.tsx +++ b/src/components/App.tsx @@ -42,7 +42,7 @@ const style: CSSProperties = { flexDirection: 'column', alignItems: 'center', width: '30rem', - maxWidth: '30rem', + maxWidth: '100%', marginLeft: 'auto', marginRight: 'auto', }; @@ -61,7 +61,7 @@ export default function App() { const user = useMe(); const notifications = useNotifications(); return ( -
+
{notifications.length > 0 ? ( diff --git a/src/components/UI/UIPrimaryTitle.tsx b/src/components/UI/UIPrimaryTitle.tsx index 95fc9b7..72eee6e 100644 --- a/src/components/UI/UIPrimaryTitle.tsx +++ b/src/components/UI/UIPrimaryTitle.tsx @@ -1,7 +1,7 @@ import { CSSProperties, ReactNode } from 'react'; const style: CSSProperties = { - fontSize: '4rem', + fontSize: '3rem', marginTop: '0.25em', marginBottom: '0.25em', };