fix: height limit for role reveal on mobile
This commit is contained in:
parent
2595c96cb8
commit
b053912d9c
|
|
@ -677,7 +677,7 @@ clients {
|
||||||
align-content: center;
|
align-content: center;
|
||||||
|
|
||||||
gap: 10px;
|
gap: 10px;
|
||||||
max-height: 100vh;
|
height: var(--role-reveal-cards-height);
|
||||||
}
|
}
|
||||||
|
|
||||||
.role-reveal-card {
|
.role-reveal-card {
|
||||||
|
|
@ -2104,11 +2104,13 @@ li.choice {
|
||||||
:root.big-screen {
|
:root.big-screen {
|
||||||
--information-height: 75vh;
|
--information-height: 75vh;
|
||||||
--target-picker-height: 100%;
|
--target-picker-height: 100%;
|
||||||
|
--role-reveal-cards-height: 100vh;
|
||||||
}
|
}
|
||||||
|
|
||||||
:root:not(.big-screen) {
|
:root:not(.big-screen) {
|
||||||
--information-height: auto;
|
--information-height: auto;
|
||||||
--target-picker-height: auto;
|
--target-picker-height: auto;
|
||||||
|
--role-reveal-cards-height: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.information {
|
.information {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue