generated from nl-design-system/example
-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FEAT: NavBar aanpassingen #971
Comments
Mobiele collapsible knop: // Navbar voorbeeld met button
<NavBar
className={clsx({ 'rhc-nav-bar--mobile-collapsed': navBarMobileCollapsed})}
// (en item props)
>
<IconButton
className="mobile-only"
onClick={() => setNavBarMobileCollapsed((value) => !value)}
icon="menu"
label="Menu in- en uitklappen"
/>
</NavBar> // Navbar styling voorbeeld
.mobile-only {
display: none;
}
@media (width <= 768px) {
.mobile-only {
display: none;
}
.rhc-nav-bar__container {
justify-content: flex-start;
position: relative;
}
.rhc-nav-bar {
display: flex;
justify-content: flex-start;
align-items: flex-start;
&, & > * {
flex-direction: column;
}
.rhc-nav-bar__list {
&, & .rhc-nav-bar__item, & .rhc-link {
inline-size: 100%;
}
}
.rhc-nav-bar__list--end {
margin-inline-start: initial;
inline-size: 100%;
}
&.rhc-nav-bar--mobile-collapsed {
.rhc-nav-bar__item {
display: none;
}
.rhc-nav-bar__list:first-child .rhc-nav-bar__item:first-child {
display: inherit;
}
}
}
.rhc-button.rhc-button--icon-only {
position: absolute;
inset-inline-end: 0;
inset-block-start: 0.25rem;
&, &:hover, &:focus, &:active {
color: var(--rhc-nav-bar-color);
}
}
nav, nav > * {
flex-direction: column;
}
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Context
Het gebruik van de NavBar is niet helemaal gebruiksvriendelijk voor developer. Nu dien je verplicht allerlei props in te vullen die mogelijk niet wenselijk zijn. Bijv:
Oplossingsrichting
Voor het niet klikbaar maken:
href
niet forceren, maar optioneel maken. Vervolgens dan ook zorgen dat deze niet klikbaar wordt.Daarnaast kan het meegeven van een level/appearance aan de heading de styling bevorderen.
...Styling voor mobiele apparaten...
The text was updated successfully, but these errors were encountered: