styles fixes

This commit is contained in:
2025-12-09 17:37:09 +01:00
parent bc1cf7b5e9
commit 7778ddbdf2
3 changed files with 14 additions and 0 deletions

View File

@@ -109,4 +109,12 @@
background: radial-gradient(circle at center, transparent 0%, var(--color-bg-base) 120%), background: radial-gradient(circle at center, transparent 0%, var(--color-bg-base) 120%),
linear-gradient(to top, var(--color-bg-base) 10%, rgba(9,9,11,0.8) 25%, transparent 60%); linear-gradient(to top, var(--color-bg-base) 10%, rgba(9,9,11,0.8) 25%, transparent 60%);
z-index: 1; z-index: 1;
}
.score-badge {
color: #22c55e;
background: rgba(34, 197, 94, 0.1);
padding: 0.2rem 0.8rem;
border-radius: 6px;
border: 1px solid rgba(34, 197, 94, 0.2);
} }

View File

@@ -24,6 +24,10 @@ html.electron .top-bar {
top: var(--titlebar-height) !important; top: var(--titlebar-height) !important;
} }
html.electron .calendar-wrapper {
margin-top: 4rem;
}
html.electron .back-btn { html.electron .back-btn {
top: 55px !important; top: 55px !important;
} }

View File

@@ -129,12 +129,14 @@ body {
margin-bottom: 0.8rem; margin-bottom: 0.8rem;
background: #222; background: #222;
} }
.card-img-wrap img { .card-img-wrap img {
width: 100%; width: 100%;
height: 100%; height: 100%;
object-fit: cover; object-fit: cover;
transition: transform 0.4s; transition: transform 0.4s;
} }
.card:hover .card-img-wrap img { .card:hover .card-img-wrap img {
transform: scale(1.05); transform: scale(1.05);
} }