fix: keep recent match actions inline

This commit is contained in:
devRaGonSa
2026-05-20 19:16:12 +02:00
parent 29ba7128e6
commit 16258effb7
2 changed files with 107 additions and 2 deletions

View File

@@ -781,7 +781,7 @@
minmax(130px, 0.75fr)
minmax(110px, 0.65fr)
minmax(110px, 0.65fr)
260px;
340px;
align-items: end;
}
@@ -796,7 +796,7 @@
display: flex;
align-items: end;
justify-content: flex-end;
min-width: 260px;
min-width: 340px;
}
.historical-match-card__actions-cell .historical-match-card__actions {
@@ -805,6 +805,20 @@
justify-content: flex-end;
}
#recent-matches-list .historical-match-card__actions {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-items: center;
justify-content: flex-end;
gap: 10px;
}
#recent-matches-list .historical-match-card__result,
#recent-matches-list .historical-match-card__link {
flex: 0 0 auto;
}
@media (max-width: 920px) {
.historical-match-meta--clean {
grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
@@ -818,6 +832,11 @@
.historical-match-card__actions-cell .historical-match-card__actions {
justify-content: flex-start;
}
#recent-matches-list .historical-match-card__actions {
flex-wrap: wrap;
justify-content: flex-start;
}
}
/* Hide public scoreboard action only in the recent matches list.