2017-10-25 00:37:26 +02:00
|
|
|
/*
|
2019-01-21 19:05:07 +01:00
|
|
|
Copyright 2019 New Vector Ltd
|
2017-10-25 00:37:26 +02:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2019-01-22 01:33:17 +01:00
|
|
|
.mx_AuthPage {
|
2019-01-22 18:50:11 +01:00
|
|
|
width: 100%;
|
2019-01-29 17:19:16 +01:00
|
|
|
min-height: 100%;
|
2019-01-22 18:50:11 +01:00
|
|
|
display: flex;
|
2019-01-23 02:28:23 +01:00
|
|
|
flex-direction: column;
|
|
|
|
background-color: $authpage-bg-color;
|
2019-01-22 01:33:17 +01:00
|
|
|
}
|
2017-10-25 00:37:26 +02:00
|
|
|
|
2019-01-22 01:49:28 +01:00
|
|
|
.mx_AuthPage_modal {
|
2019-01-23 02:28:23 +01: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;
|
2019-01-22 01:49:28 +01:00
|
|
|
}
|