Skip to content

Commit be7168e

Browse files
author
Pascal Wegner
committed
Extend max width for large screen
1 parent 34c2fae commit be7168e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/pwa/src/components/Counter/Counter.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ export function Counter({
3434
const stepLength = 1 - timeLeftAdvancedByOneInSeconds / timeTotalInSeconds;
3535

3636
const counterDesktop = (
37-
<div className="h-full w-full lg:max-w-screen-md hidden lg:flex justify-between flex-col items-center">
37+
<div className="h-full w-full lg:max-w-screen-xl hidden lg:flex justify-between flex-col items-center">
3838
<div className="w-full flex">
3939
<div className="h-20 w-full flex justify-end items-center px-6">
4040
<ThemeToggle />
4141
</div>
4242
</div>
43-
<div className="flex flex-col justify-between w-full h-3/6 items-center relative">
43+
<div className="flex flex-col lg:max-w-screen-md justify-between w-full h-3/6 items-center relative">
4444
<div className="flex flex-1 flex-col items-center z-[1]">
4545
<span className="text-blue-600 text-3xl tracking-wider">ROUND</span>
4646
<span

packages/pwa/src/components/Form/Form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export const Form = ({
2121
workInterval,
2222
}: FormProps) => {
2323
return (
24-
<div className="h-full w-full flex max-w-screen-md justify-center flex-col items-center">
24+
<div className="h-full w-full flex max-w-screen-xl justify-center flex-col items-center">
2525
<div className="flex-[0.75] w-full flex">
2626
<div className="h-20 w-full flex justify-end items-center px-6">
2727
<ThemeToggle />

0 commit comments

Comments
 (0)