2017-10-25 06:37:26 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2019-2024 New Vector Ltd.
|
2017-10-25 06:37:26 +08:00
|
|
|
|
2024-09-09 21:57:16 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2017-10-25 06:37:26 +08:00
|
|
|
*/
|
|
|
|
|
2019-01-22 08:33:17 +08:00
|
|
|
.mx_AuthPage {
|
2019-01-23 01:50:11 +08:00
|
|
|
width: 100%;
|
2019-01-30 00:19:16 +08:00
|
|
|
min-height: 100%;
|
2019-01-23 01:50:11 +08:00
|
|
|
display: flex;
|
2019-01-23 09:28:23 +08:00
|
|
|
flex-direction: column;
|
|
|
|
background-color: $authpage-bg-color;
|
2023-04-14 22:15:21 +08:00
|
|
|
height: 100vh;
|
|
|
|
overflow: auto;
|
2019-01-22 08:33:17 +08:00
|
|
|
}
|
2017-10-25 06:37:26 +08:00
|
|
|
|
2019-01-22 08:49:28 +08:00
|
|
|
.mx_AuthPage_modal {
|
2019-01-23 09:28:23 +08:00
|
|
|
display: flex;
|
|
|
|
margin: 100px auto auto;
|
|
|
|
border-radius: 4px;
|
|
|
|
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.33);
|
|
|
|
background-color: $authpage-modal-bg-color;
|
2020-01-30 18:18:14 +08:00
|
|
|
|
2022-05-13 22:10:22 +08:00
|
|
|
@media only screen and (max-height: 768px) {
|
|
|
|
margin-top: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 480px) {
|
2020-05-28 01:33:55 +08:00
|
|
|
margin-top: 0;
|
|
|
|
}
|
2020-01-30 18:18:14 +08:00
|
|
|
}
|