Commit a6428fef by Hugo Häggmark

Added link to side menu header and fixed styling

parent 96d28703
......@@ -10,7 +10,9 @@ const SideMenuDropDown: FC<Props> = props => {
return (
<ul className="dropdown-menu dropdown-menu--sidemenu" role="menu">
<li className="side-menu-header">
<span className="sidemenu-item-text">{link.text}</span>
<a href={link.url}>
<span className="sidemenu-item-text">{link.text}</span>{' '}
</a>
</li>
{link.children &&
link.children.map((child, index) => {
......
......@@ -8,11 +8,14 @@ exports[`Render should render children 1`] = `
<li
className="side-menu-header"
>
<a>
<span
className="sidemenu-item-text"
>
link
</span>
</a>
</li>
<DropDownChild
child={
......@@ -49,11 +52,14 @@ exports[`Render should render component 1`] = `
<li
className="side-menu-header"
>
<a>
<span
className="sidemenu-item-text"
>
link
</span>
</a>
</li>
</ul>
`;
......@@ -149,6 +149,12 @@
color: #ebedf2;
}
.side-menu-header > a {
// Removes left-brand-border-gradient from link
border: none !important;
padding: 0 !important;
}
.sidemenu-subtitle {
padding: 0.5rem 1rem 0.5rem;
font-size: $font-size-sm;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment