chore: polish historical copy and match links

Polish public historical page copy and add safe links for recent matches when source URLs are available.
This commit is contained in:
devRaGonSa
2026-05-19 10:12:52 +02:00
committed by GitHub
parent bf3ba630fc
commit d2de0597b6
5 changed files with 324 additions and 35 deletions

View File

@@ -574,6 +574,13 @@
font-size: 1.08rem;
}
.historical-match-card__actions {
display: flex;
flex-wrap: wrap;
justify-content: flex-end;
gap: 10px;
}
.historical-match-card__result {
padding: 0.45rem 0.75rem;
border: 1px solid rgba(183, 201, 125, 0.24);
@@ -585,6 +592,27 @@
text-transform: uppercase;
}
.historical-match-card__link {
display: inline-flex;
align-items: center;
min-height: 34px;
padding: 0 0.8rem;
border: 1px solid rgba(210, 182, 118, 0.34);
border-radius: 999px;
color: var(--accent-warm);
font-size: 0.76rem;
font-weight: 800;
letter-spacing: 0.08em;
text-decoration: none;
text-transform: uppercase;
}
.historical-match-card__link:hover,
.historical-match-card__link:focus-visible {
border-color: rgba(210, 182, 118, 0.62);
color: var(--text);
}
.historical-match-meta {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
@@ -638,6 +666,10 @@
grid-template-columns: 1fr;
}
.historical-match-card__actions {
justify-content: flex-start;
}
.historical-tab {
width: 100%;
}