open-vault/website/components/subnav/style.css
Jeff Escalante ec620a7765
Implement MDX Remote (#10581)
* implement mdx remote

* fix an unfenced code block

* fix partials path

Co-authored-by: Jim Kalafut <jkalafut@hashicorp.com>
2020-12-17 16:53:33 -05:00

16 lines
304 B
CSS

@import '~@hashicorp/react-subnav/style.css';
/* limit the inner width of the navigation to match the site layout */
.g-subnav {
& .g-subnav-inner {
@media (width < 1288px) {
padding: 0 32px;
}
@media (width >= 1288px) {
padding: 0 calc(50% - 1288px / 2 + 32px);
}
}
}