/* Global Component Styles */ @import '~@hashicorp/mktg-global-styles/style.css'; :root { --highlight-color: var(--nomad); } /* Local Components */ @import '../components/placement-table/style.css'; @import '../components/case-study-carousel/style.css'; @import '../components/features-list/style.css'; @import '../components/enterprise-info/style.css'; @import '../components/mini-cta/style.css'; @import '../components/homepage-hero/style.css'; @import '../components/basic-hero/style.css'; @import '../components/footer/style.css'; @import '../components/use-case-page/style.css'; /* Local Pages */ @import './home/style.css'; /* Print Styles */ @import './print.css'; /* Sticky Footer */ .__next > .content { min-height: calc(100vh - 260px); &.banner { min-height: calc(100vh - 315px); } } /* * About this selector: * `.g-subnav ~ *` finds all elements after the navigation. * `:target` finds the active permalink on the page. * * About this style: * `scroll-margin-top` adjusts the vertical scroll of a permalink. * `64px` adjusts the scroll to account for the navigation. * `0.5em` further adjusts the scroll to give the permalink breathing room. * * See: https://developer.mozilla.org/en-US/docs/Web/CSS/:target * See: https://developer.mozilla.org/en-US/docs/Web/CSS/scroll-margin-top */ .g-subnav ~ * :target { scroll-margin-top: calc(64px + 0.5em); }