fix padding in leaderboard (#7)

main
HumanoidSandvichDispenser 2026-04-11 22:04:09 -07:00 committed by GitHub
parent 6b9fe9f5a0
commit bb9f285051
1 changed files with 5 additions and 4 deletions

View File

@ -7,10 +7,11 @@
position: relative;
display: flex;
flex-direction: column;
min-height: 100vh;
min-height: 100dvh;
margin: -1.25rem -1.5rem;
padding: 1.5rem clamp(1rem, 3vw, 2.5rem) 0;
/* Fill the viewport like SongSelectScreen; avoid negative margins that cause overflow */
height: 100vh;
height: 100dvh;
margin: 0;
padding: 1rem clamp(1rem, 3vw, 2.5rem) 0;
overflow: hidden;
box-sizing: border-box;
color: #ffffff;