mirror of https://github.com/vector-im/riot-web
Tweak the dialog dimensions
Make height/width max (as per design wish) and actual based on viewport.pull/21833/head
parent
23140a84ff
commit
538272a827
|
@ -15,9 +15,10 @@ limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.mx_HostSignupDialog {
|
.mx_HostSignupDialog {
|
||||||
min-height: 531px;
|
width: 90vw;
|
||||||
|
max-width: 580px;
|
||||||
|
height: 80vh;
|
||||||
max-height: 600px;
|
max-height: 600px;
|
||||||
width: 580px;
|
|
||||||
|
|
||||||
.mx_HostSignupDialog_info {
|
.mx_HostSignupDialog_info {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
@ -100,8 +101,10 @@ limitations under the License.
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_HostSignup_persisted {
|
.mx_HostSignup_persisted {
|
||||||
width: 580px;
|
width: 90vw;
|
||||||
height: 600px;
|
max-width: 580px;
|
||||||
|
height: 80vh;
|
||||||
|
max-height: 600px;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
|
|
Loading…
Reference in New Issue