2018-12-06 22:39:59 +01:00
|
|
|
/*
|
|
|
|
Copyright 2018 New Vector Ltd
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_RoomRecoveryReminder {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
text-align: center;
|
|
|
|
background-color: $room-warning-bg-color;
|
|
|
|
padding: 20px;
|
|
|
|
border: 1px solid $primary-hairline-color;
|
|
|
|
border-bottom: unset;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomRecoveryReminder_header {
|
|
|
|
font-weight: bold;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomRecoveryReminder_body {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomRecoveryReminder_button {
|
|
|
|
@mixin mx_DialogButton;
|
|
|
|
margin: 0 10px;
|
|
|
|
}
|
|
|
|
|
2019-02-08 17:27:25 +01:00
|
|
|
.mx_RoomRecoveryReminder_secondary {
|
|
|
|
font-size: 90%;
|
2020-01-03 14:51:42 +01:00
|
|
|
margin-top: 1em;
|
2018-12-06 22:39:59 +01:00
|
|
|
}
|