import styled from 'styled-components'
const MenuItemStyled = styled.div`
display: flex;
flex-direction: column;
cursor: pointer;
> .menu-item {
display: flex;
padding-left: 10px;
align-items: center;
height: 50px;
width: 100%;
text-align: left;
color: #c5d0e1;
font-size: 14px;
&:hover {
background-color: #2c3848;
}
&.menu-item-active {
background-color: #2c3848;
box-shadow: inset -4px 0 0 0 #6197c6;
font-family: ProximaNova;
font-size: 14px;
color: #ffffff;
}
}
.menu-item-submenu {
display: none;
.menu-item{
height: 40px;
padding-left: 40px;
}
&.menu-item-submenu-opened {
display: block;
}
}
`
export default MenuItemStyled
|