fix: height limit for role reveal on mobile

This commit is contained in:
emilis 2025-11-18 16:28:34 +00:00
parent 2595c96cb8
commit b053912d9c
No known key found for this signature in database
1 changed files with 3 additions and 1 deletions

View File

@ -677,7 +677,7 @@ clients {
align-content: center;
gap: 10px;
max-height: 100vh;
height: var(--role-reveal-cards-height);
}
.role-reveal-card {
@ -2104,11 +2104,13 @@ li.choice {
:root.big-screen {
--information-height: 75vh;
--target-picker-height: 100%;
--role-reveal-cards-height: 100vh;
}
:root:not(.big-screen) {
--information-height: auto;
--target-picker-height: auto;
--role-reveal-cards-height: auto;
}
.information {