10 lines
165 B
CSS
10 lines
165 B
CSS
|
:root {
|
||
|
--page-width: 120em
|
||
|
}
|
||
|
|
||
|
@media only screen and (min-width: 70em) {
|
||
|
.terminal-mkdocs-main-grid {
|
||
|
grid-template-columns: max-content 10fr;
|
||
|
}
|
||
|
}
|