mirror of
https://github.com/jlengrand/error-prone-support.git
synced 2026-03-10 08:11:25 +00:00
Generating the website is done by Jekyll with a theme called `just-the-docs`. Deployment of the website is done via GitHub Pages. See: - https://github.com/jekyll/jekyll - https://github.com/just-the-docs/just-the-docs
22 lines
565 B
SCSS
22 lines
565 B
SCSS
// XXX: We should override `$nav-width(-md)`, but this breaks code highlighting
|
|
// and other styles. See
|
|
// https://github.com/just-the-docs/just-the-docs/issues/982.
|
|
// Once the fix for the above issue is released, replace this section with the
|
|
// approach recommended at
|
|
// https://just-the-docs.github.io/just-the-docs/docs/customization/#custom-schemes.
|
|
@include mq(lg) {
|
|
.side-bar {
|
|
min-width: 400px;
|
|
}
|
|
|
|
.site-nav, .site-header {
|
|
width: 400px;
|
|
}
|
|
}
|
|
|
|
footer > img#logo {
|
|
width: 2rem;
|
|
margin: 0 auto;
|
|
display: block;
|
|
}
|