2017-10-24 22:37:26 +00:00
|
|
|
/*
|
2024-09-09 13:57:16 +00:00
|
|
|
Copyright 2019-2024 New Vector Ltd.
|
2017-10-24 22:37:26 +00:00
|
|
|
|
2024-09-09 13:57:16 +00: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-24 22:37:26 +00:00
|
|
|
*/
|
|
|
|
|
2019-01-23 01:28:23 +00:00
|
|
|
.mx_AuthHeader {
|
2019-01-23 15:57:31 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2019-01-23 01:28:23 +00:00
|
|
|
width: 206px;
|
2021-01-28 17:37:59 +00:00
|
|
|
padding: 25px 25px;
|
2019-01-23 01:28:23 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2020-01-30 10:18:14 +00:00
|
|
|
|
2020-05-27 17:33:55 +00:00
|
|
|
@media only screen and (max-width: 480px) {
|
|
|
|
.mx_AuthHeader {
|
|
|
|
display: none;
|
|
|
|
}
|
2021-01-28 18:19:13 +00:00
|
|
|
}
|