Files
element-web/res/css/views/auth/_AuthPage.pcss
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
735 B
Plaintext
Raw Normal View History

2017-10-24 23:37:26 +01:00
/*
2024-09-09 14:57:16 +01:00
Copyright 2019-2024 New Vector Ltd.
2017-10-24 23:37:26 +01:00
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
2024-09-09 14:57:16 +01:00
Please see LICENSE files in the repository root for full details.
2017-10-24 23:37:26 +01:00
*/
.mx_AuthPage {
2019-01-22 11:50:11 -06:00
width: 100%;
2019-01-29 10:19:16 -06:00
min-height: 100%;
2019-01-22 11:50:11 -06:00
display: flex;
2019-01-22 19:28:23 -06:00
flex-direction: column;
background-color: $authpage-bg-color;
2023-04-14 15:15:21 +01:00
height: 100vh;
overflow: auto;
}
2017-10-24 23:37:26 +01:00
.mx_AuthPage_modal {
2019-01-22 19:28:23 -06: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;
@media only screen and (max-height: 768px) {
margin-top: 50px;
}
@media only screen and (max-width: 480px) {
2020-05-27 19:33:55 +02:00
margin-top: 0;
}
}