Skip to content

Commit

Permalink
fix: broken styles during compact mode
Browse files Browse the repository at this point in the history
  • Loading branch information
roldanjr authored and sekwah41 committed Dec 20, 2022
1 parent 5ed1275 commit b142a47
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions app/renderer/src/styles/routes/timer/timer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,14 @@ export const StyledTimer = styled.main`
display: flex;
flex-direction: column;
grid-template-rows: 1fr;
align-items: end;
&.compact {
padding-top: 0;
display: flex;
display: grid;
grid-auto-flow: column;
justify-content: center;
align-content: start;
align-items: center;
}
Expand Down

0 comments on commit b142a47

Please sign in to comment.