Skip to content

Commit 29ab935

Browse files
author
Pascal Wegner
committed
Improve arc responsiveness
1 parent 213e627 commit 29ab935

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ export function Counter({
3232

3333
return (
3434
<div>
35-
<div className="flex flex-col items-center mb-20 z-[1]">
35+
<div className="flex flex-col items-center mb-8 lg:mb-20 z-[1]">
3636
<span className="text-blue-600 text-lg font-bold">ROUND</span>
3737
<span className="text-4xl" data-testid={'round'}>{`${
3838
rounds - roundsLeft
3939
}/${rounds}`}</span>
4040
</div>
41-
<div className="flex flex-col justify-center items-center relative w-72 h-72">
41+
<div className="flex flex-col justify-center items-center relative w-64 sm:w-72 lg:w-80 h-64 sm:h-72 lg:h-80">
4242
<Arc
4343
key={factor === 0 ? 'arc-from-start' : 'arc-running'}
4444
className="absolute origin-center"

0 commit comments

Comments
 (0)