File size: 488 Bytes
f63d934 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
.player-stats {
grid-area: stats;
align-self: start;
margin-top: var(--small);
margin-left: var(--medium);
display: flex;
justify-content: space-between;
}
.stat {
font-size: 0.6rem;
width: 2.5rem;
}
.stat__key,
.stat__value {
display: inline;
}
.stat__value {
margin-left: var(--small);
}
@media (min-width: 640px) {
.player-stats {
justify-content: unset;
}
.player-stats,
.stat__value {
margin-left: 0;
}
.stat__key {
display: block;
margin-left: 0;
}
}
|