implement homeserver consent stage

This commit is contained in:
Bruno Windels
2020-12-04 12:34:31 +01:00
parent 285ef27b0b
commit c68e00f7a2
7 changed files with 268 additions and 23 deletions
+38
View File
@@ -61,6 +61,11 @@ textarea {
font-style: normal;
}
button, input {
font-size: inherit;
font-weight: inherit;
}
.RootView {
margin: 0 auto;
max-width: 480px;
@@ -174,6 +179,39 @@ input[type='text'].large {
box-sizing: border-box;
}
.ServerConsentView .actions {
margin-top: 24px;
display: flex;
align-items: center;
}
.ServerConsentView input[type=submit] {
flex: 1;
margin-left: 12px;
}
.ServerOptions div {
margin: 8px 0;
}
.ServerOptions label {
display: flex;
align-items: center;
}
.ServerOptions label > span,
.ServerOptions label > .line {
margin-left: 8px;
}
.ServerOptions label > .line {
flex: 1;
border: none;
border-bottom: 1px solid var(--grey);
padding: 4px 0;
}
.LoadServerPolicyView {
display: flex;
}