Files
zen-kanji/client/src/styles/components/_readings.scss
Rene Kievits f703cc5727
All checks were successful
Release Build / build-docker (push) Successful in 1m27s
Release Build / build-android-and-release (push) Successful in 2m59s
add more infos to overview, fix redo lessons button, add readings to review for clarification
2026-01-11 21:36:45 +01:00

29 lines
453 B
SCSS

@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;
}
}