Closed
Description
Just a small bug:
In Semantic UI's vertical menu, the divider height is specified twice:
- once using variable @dividerSize
- and absolutely: 1px
Menu.less, line 533:
.ui.vertical.menu .item:before {
position: absolute;
content: '';
top: 0%;
left: 0px;
width: 100%;
height: @dividerSize;
background: @verticalDividerBackground;
height: 1px;
}
Kind regards,
Sascha.