Fix match roster tab overflow

This commit is contained in:
Kalle
2026-08-15 14:07:54 +03:00
parent f96504d592
commit 3f7f5c301b

View File

@@ -16,7 +16,7 @@
@container (width >= 640px) {
.rosters {
display: grid;
grid-template-columns: 1fr auto 1fr;
grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
gap: var(--s-4);
width: auto;
max-width: none;
@@ -27,6 +27,7 @@
margin-inline: auto;
width: max-content;
max-width: 100%;
min-width: 0;
}
.rostersDivider {
@@ -108,12 +109,20 @@
flex-direction: column;
align-items: flex-start;
gap: var(--s-1);
min-width: 0;
& > * {
max-width: 100%;
min-width: 0;
}
}
.memberLink {
display: flex;
align-items: center;
gap: var(--s-2);
max-width: 100%;
min-width: 0;
}
.memberSecondRow {
@@ -126,6 +135,14 @@
display: flex;
flex-direction: column;
line-height: 1.2;
min-width: 0;
& > span {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: 100%;
}
}
.memberInGameName {