fix(dial-in): allow scroll on dial in info page (#3271)
* fix(dial-in): allow scroll on dial in info page * squash: some more tweaks for flexible sizing
This commit is contained in:
parent
acda279111
commit
c62f761d67
|
@ -126,11 +126,16 @@
|
||||||
|
|
||||||
.dial-in-page {
|
.dial-in-page {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
box-sizing: border-box;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
height: 100%;
|
max-height: 100%;
|
||||||
justify-content: center;
|
overflow: auto;
|
||||||
|
padding: 25px;
|
||||||
|
position: absolute;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
top: 50%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
.dial-in-numbers-list {
|
.dial-in-numbers-list {
|
||||||
|
@ -140,6 +145,7 @@
|
||||||
|
|
||||||
.dial-in-conference-id {
|
.dial-in-conference-id {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
min-width: 200px;
|
||||||
width: 30%;
|
width: 30%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue