Cleanup error/loading screens
This commit is contained in:
parent
aa988e9f4a
commit
940706bed0
12 changed files with 77 additions and 530 deletions
51
src/FullScreenView.module.css
Normal file
51
src/FullScreenView.module.css
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
.page {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow: hidden;
|
||||
min-height: 100%;
|
||||
}
|
||||
|
||||
.header {
|
||||
padding: 76px 65px;
|
||||
}
|
||||
|
||||
.container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
max-width: 660px;
|
||||
padding: 0 65px;
|
||||
}
|
||||
|
||||
.content > * {
|
||||
margin-top: 0;
|
||||
margin-bottom: 32px;
|
||||
}
|
||||
|
||||
.content > :last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.homeLink {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
padding: 8px 136px;
|
||||
color: #0dbd8b;
|
||||
text-decoration: none;
|
||||
background: #0dbd8b;
|
||||
border-radius: 8px;
|
||||
color: #ffffff;
|
||||
font-weight: 600;
|
||||
font-size: 15px;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue