css: adapt highscores to smartphone
This commit is contained in:
parent
f119935467
commit
763e517c3f
@ -50,6 +50,10 @@ const players = computed(() => {
|
||||
margin: 64px 0;
|
||||
width: 600px;
|
||||
min-height: 600px;
|
||||
|
||||
@media (max-width: $phone-max-width) {
|
||||
width: 300px;
|
||||
}
|
||||
}
|
||||
|
||||
&__table-outer-border {
|
||||
@ -93,6 +97,12 @@ const players = computed(() => {
|
||||
&__title {
|
||||
font-family: $font-primary;
|
||||
font-size: 48px;
|
||||
|
||||
@media (max-width: $phone-max-width) {
|
||||
font-size: 32px;
|
||||
padding: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
&__table-body {
|
||||
@ -103,6 +113,9 @@ const players = computed(() => {
|
||||
font-family: $font-secondary;
|
||||
font-size: 32px;
|
||||
|
||||
@media (max-width: $phone-max-width) {
|
||||
font-size: 24px;
|
||||
}
|
||||
}
|
||||
|
||||
&__table {
|
||||
|
Loading…
Reference in New Issue
Block a user