36 lines
819 B
Plaintext
36 lines
819 B
Plaintext
.container {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
background-color: var(--oak-bg-color-page);
|
|
// min-height: 500px;
|
|
|
|
.ctrl {
|
|
margin: 8px;
|
|
margin-top: 10px;
|
|
flex: 1;
|
|
|
|
.pc1 {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-top: 4px;
|
|
|
|
.content {
|
|
background-color: var(--oak-bg-color-container);
|
|
padding: 4px;
|
|
border-radius: 2px;
|
|
padding: 16px;
|
|
|
|
.tips {
|
|
color: var(--oak-color-warning);
|
|
font-size: small;
|
|
margin-top: 3px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |