Fix tournament register tab map pool styles

This commit is contained in:
Kalle
2026-04-21 08:13:33 +03:00
parent b5a3dfd0e5
commit bebf23e55e
2 changed files with 10 additions and 10 deletions

View File

@@ -1,7 +1,8 @@
.stageRow {
display: flex;
width: 100%;
align-items: flex-end;
align-items: stretch;
gap: var(--s-2);
}
.stageNameRow {
@@ -27,6 +28,8 @@
.stageImage {
border-radius: var(--radius-box);
height: 100%;
object-fit: cover;
}
.modeButtonsContainer {

View File

@@ -1381,15 +1381,12 @@ function TOPickedMapPoolInfo() {
<Section title={t("calendar:forms.mapPool")}>
<div>
<MapPoolStages mapPool={mapPool} />
<LinkButton
className="mt-4"
to={mapsPageWithMapPool(mapPool)}
variant="outlined"
size="small"
>
<Image alt="" path={navIconUrl("maps")} width={22} height={22} />
{t("calendar:createMapList")}
</LinkButton>
<div className="stack items-center mt-4">
<LinkButton to={mapsPageWithMapPool(mapPool)} variant="outlined">
<Image alt="" path={navIconUrl("maps")} width={22} height={22} />
{t("calendar:createMapList")}
</LinkButton>
</div>
</div>
</Section>
);