37 lines
554 B
Plaintext
37 lines
554 B
Plaintext
.container {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
min-height: 100%;
|
|
gap: 16px;
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
.title {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.title:hover {
|
|
color: var(--oak-color-primary);
|
|
}
|
|
|
|
.btnContainer {
|
|
min-height: 180px;
|
|
flex: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
.help {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 24px;
|
|
}
|
|
} |