23 lines
No EOL
289 B
CSS
23 lines
No EOL
289 B
CSS
.page {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
background-color: var(--background-color)
|
|
}
|
|
.main {
|
|
width: 100%;
|
|
}
|
|
|
|
.widget-panel{
|
|
|
|
}
|
|
.sidebar {
|
|
|
|
}
|
|
|
|
@media (max-width: 1000px) {
|
|
.widget-panel {
|
|
display: none;
|
|
}
|
|
|
|
} |