35 lines
707 B
Plaintext
35 lines
707 B
Plaintext
.container {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
.body {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
.content {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
.input {
|
|
font-size: var(--oak-font-size-title-large);
|
|
margin: 10px;
|
|
}
|
|
|
|
.tips {
|
|
align-self: flex-end;
|
|
margin-top: 22px;
|
|
}
|
|
}
|
|
|
|
|
|
.footer {
|
|
padding-top: 11px;
|
|
border-top: 1px solid #e5e5e5;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
}
|
|
} |