2023-01-04 00:58:38 +08:00
|
|
|
/*
|
|
|
|
Copyright 2022 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.
|
|
|
|
*/
|
|
|
|
|
2021-12-11 08:42:18 +08:00
|
|
|
.page {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
overflow: hidden;
|
|
|
|
min-height: 100%;
|
|
|
|
}
|
|
|
|
|
2021-12-11 08:22:42 +08:00
|
|
|
.header {
|
|
|
|
padding: 76px 65px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
2021-10-07 05:19:34 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-12-11 08:22:42 +08:00
|
|
|
justify-content: center;
|
2021-10-07 05:19:34 +08:00
|
|
|
align-items: center;
|
2021-12-11 08:22:42 +08:00
|
|
|
max-width: 660px;
|
|
|
|
padding: 0 65px;
|
2021-10-07 05:19:34 +08:00
|
|
|
}
|
|
|
|
|
2021-12-11 08:22:42 +08:00
|
|
|
.content > * {
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content > :last-child {
|
2021-10-07 05:19:34 +08:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2021-12-11 08:22:42 +08:00
|
|
|
|
2022-07-21 03:43:11 +08:00
|
|
|
/* Make the buttons the same width */
|
|
|
|
.wideButton {
|
2021-12-15 10:23:49 +08:00
|
|
|
width: 291px;
|
2021-12-11 08:22:42 +08:00
|
|
|
}
|
2022-07-21 03:43:11 +08:00
|
|
|
|
|
|
|
/* Fixed height to avoid content jumping around*/
|
|
|
|
.sendLogsSection {
|
|
|
|
height: 50px;
|
|
|
|
}
|