ec620a7765
* implement mdx remote * fix an unfenced code block * fix partials path Co-authored-by: Jim Kalafut <jkalafut@hashicorp.com>
16 lines
304 B
CSS
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);
|
|
}
|
|
}
|
|
}
|