22 lines
253 B
Plaintext
22 lines
253 B
Plaintext
page {
|
|
height: 100vh;
|
|
background: var(--td-bg-color-page);
|
|
}
|
|
|
|
.page-container {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
overflow: hidden;
|
|
flex-direction: column;
|
|
|
|
.navbar {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.content {
|
|
flex: 1;
|
|
overflow: hidden;
|
|
}
|
|
}
|