@hashicorp/react-subnav
Version:
Displays a navigation bar, with links and a call-to-action.
27 lines (22 loc) • 486 B
CSS
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
/* Note: consumes from theme.module.css, as marked */
.root {
color: var(--menu-item-text-color); /* from theme.module.css */
position: relative;
&::after {
content: '';
position: absolute;
left: 0;
right: 0;
bottom: 0;
height: 2px;
background: var(--menu-item-underline-color); /* from theme.module.css */
opacity: 0;
}
&.isActive::after {
opacity: 1;
}
}