add more infos to overview, fix redo lessons button, add readings to review for clarification
All checks were successful
Release Build / build-docker (push) Successful in 1m27s
Release Build / build-android-and-release (push) Successful in 2m59s

This commit is contained in:
Rene Kievits
2026-01-11 21:36:45 +01:00
parent 2129cee5c4
commit f703cc5727
9 changed files with 182 additions and 115 deletions

View File

@@ -0,0 +1,28 @@
@use '../abstracts' as *;
.readings-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: $spacing-lg;
width: 100%;
}
.reading-box {
background: $color-reading-box;
padding: $spacing-lg;
border-radius: $radius-lg;
text-align: center;
.label {
font-size: $font-xs;
color: #666;
letter-spacing: 0.0625rem;
text-transform: uppercase;
margin-bottom: $spacing-xs;
}
.val {
font-size: 1.1rem;
font-weight: $weight-bold;
}
}