@@ -31,7 +31,7 @@ export const MenuItemEach = styled.div`
3131 height: 50px;
3232 width: 100%;
3333 box-sizing: border-box;
34- color: ${ theme ( 'sidebar.menu_link ' ) } ;
34+ color: ${ theme ( 'sidebar.menuLink ' ) } ;
3535`
3636export const MenuRow = styled . div `
3737 display: flex;
@@ -42,7 +42,7 @@ export const MenuRow = styled.div`
4242 padding-left: 15px;
4343
4444 a {
45- color: ${ theme ( 'sidebar.menu_link ' ) } ;
45+ color: ${ theme ( 'sidebar.menuLink ' ) } ;
4646 display: block;
4747 flex-grow: 1;
4848 max-width: 50%;
@@ -52,20 +52,20 @@ export const MenuRow = styled.div`
5252 &:hover {
5353 background-color: #047fbd;
5454 a {
55- color: ${ theme ( 'sidebar.menu_link ' ) } ;
55+ color: ${ theme ( 'sidebar.menuLink ' ) } ;
5656 }
5757 }
5858`
5959
6060export const MenuTitle = styled . div `
61- color: ${ theme ( 'sidebar.menu_link ' ) } ;
61+ color: ${ theme ( 'sidebar.menuLink ' ) } ;
6262 display: block;
6363 flex-grow: 1;
6464 max-width: 50%;
6565 opacity: 0.6;
6666
6767 &:hover {
68- color: ${ theme ( 'sidebar.menu_link ' ) } ;
68+ color: ${ theme ( 'sidebar.menuLink ' ) } ;
6969 cursor: pointer;
7070 }
7171`
@@ -104,23 +104,24 @@ export const MiniChartText = styled.div`
104104`
105105
106106export const MenuItemIcon = styled ( Img ) `
107+ fill: ${ theme ( 'sidebar.menuLink' ) } ;
107108 opacity: ${ props => ( props . active ? 1 : 0.5 ) } ;
108109 width: 22px;
109110 height: 22px;
110111 display: block;
111112`
112113export const MenuCommunitiesIcon = styled ( MenuItemIcon ) `
113- fill: ${ theme ( 'sidebar.menu_link ' ) } ;
114+ fill: ${ theme ( 'sidebar.menuLink ' ) } ;
114115`
115116
117+ // margin-top: ${props => (props.active ? '10px' : '0px')};
118+ // margin-bottom: ${props => (props.active ? '10px' : '0px')};
116119export const ChildrenWrapper = styled . div `
117120 padding-left: 23px;
118121 padding-top: ${ props => ( props . active ? '10px' : '0px' ) } ;
119122 padding-bottom: ${ props => ( props . active ? '10px' : '0px' ) } ;
120123 border-left: 1px solid #007baa;
121124 background: #006a9f;
122- margin-top: ${ props => ( props . active ? '10px' : '0px' ) } ;
123- margin-bottom: ${ props => ( props . active ? '10px' : '0px' ) } ;
124125 overflow: hidden;
125126 max-height: ${ props => ( props . active ? '400px' : '0px' ) } ;
126127 transition: max-height 0.5s ease-in-out;
0 commit comments