/* This is specifically so we don't allow navigation between the top-level
navigation items: Windows, Linux, and Mac. Could be replaced by something like
https://github.com/backstage/mkdocs-monorepo-plugin and separating into 3. */
.md-tabs {
    display: none !important;
}

/* For installation docs, we have no pages long enough for table of contents. */
.md-sidebar--secondary {
    visibility: hidden;
}

/* We hide h1 to have more space on each page. This makes h2 align more
closely to the top of the page. */
.md-typeset h2 {
    margin-top: 0.64em
}

/* The project doesn't really have a root, it has /linux, /windows, and /mac.
So don't allow people to click the logo or else it will try to go to root. Can
be fixed by moving to monorepo plugin mentioned above.*/
.md-header__button.md-logo {
    pointer-events: none;
    cursor: default;
}