Skip to content

Commit

Permalink
Properly center and space end screen
Browse files Browse the repository at this point in the history
This patch fixes the issue that the text and the check mark icon of the
end screen is pushed to the top of the end space with basically no
spacing. This is caused by an incorrect CSS calculation.
  • Loading branch information
lkiesow committed Oct 8, 2024
1 parent 6b8eabd commit 5bea92e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/TheEnd.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const TheEnd: React.FC = () => {

const theEndStyle = css({
width: "100%",
height: "calc(100% - 64px)",
height: "calc(100vh - 64px)",
display: "flex",
flexDirection: "column",
justifyContent: "center",
Expand Down

0 comments on commit 5bea92e

Please sign in to comment.