Firefox was broken with margin-top, so let's try padding-top instead

This commit is contained in:
Liam Westby 2018-04-10 15:59:07 -05:00
parent 6939b4e806
commit decae2cf4a

View File

@ -1,13 +1,12 @@
:host {
display: grid;
grid-template-rows: repeat(2, 1fr);
grid-template-rows: 100%;
grid-template-columns: 50px 1fr;
min-height: 100%;
align-content: center;
padding-top: 15px;
}
#title {
grid-area: 1 / 1 / span 2 / 1;
display: flex;
flex-direction: column;
justify-content: center;
@ -27,8 +26,3 @@
padding: 0;
}
.leaderboard-container {
margin-left: 15px;
margin-top: 15px;
margin-right: 15px;
}