34 lines
542 B
Plaintext
34 lines
542 B
Plaintext
import .container {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
min-height: 100%;
|
|
}
|
|
|
|
.name {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
gap: 6px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.name: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;
|
|
}
|
|
} |