Display list of games #16

Merged
Egamorf merged 6 commits from feature/display-list-of-game into main 2025-04-17 00:59:30 +02:00
Showing only changes of commit 5633ef9b06 - Show all commits

View File

@@ -1,6 +1,7 @@
.row {
display: grid;
grid-template-columns: 48px 5fr 70px 2fr 3fr 60px 30px 30px;
grid-gap: 8px;
text-wrap: nowrap;
height: 64px;
background: var(--input-secondary);
@@ -14,6 +15,10 @@
font-weight: bold;
}
.release-date, .storage, .max-value {
color: rgb(184, 184, 184);
}
.pill {
width: fit-content;
height: 24px;
@@ -31,9 +36,40 @@
.platform-pill {
color: var(--violet);
cursor: pointer;
text-decoration: none;
}
.platform-pill:hover {
text-decoration: underline;
}
}
.detail {
transform: scale(0.8, 1.2) rotate(-90deg);
background: none;
border: none;
outline: none;
cursor: pointer;
}
::deep .detail svg {
fill: var(--white);
}
.value {
font-size: 24px;
font-weight: bold;
}
.max-value {
translate: 0 200px;
}
@media screen and (max-width: 800px) {
.row {
grid-template-columns: 48px 5fr 2fr 3fr 30px 30px;
}
.release-date, .storage {
display: none;
}
}