Skip to content
This repository was archived by the owner on Nov 8, 2022. It is now read-only.

Commit 62019df

Browse files
committed
fix(travis): varibale hoist issue
1 parent 9d8ee50 commit 62019df

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

containers/Sidebar/styles/menu_bar.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,12 @@ export const MenuItemBar = styled.div`
3838
box-sizing: border-box;
3939
color: ${theme('sidebar.menuLink')};
4040
`
41+
export const MenuRow = styled.div`
42+
${cs.flex()};
43+
justify-content: left;
44+
align-items: center;
45+
font-size: 1rem;
46+
`
4147
export const MenuItemIcon = styled(CommunityFaceLogo)`
4248
opacity: ${({ active }) => (active ? 1 : 0.5)};
4349
width: 22px;
@@ -49,12 +55,6 @@ export const MenuItemIcon = styled(CommunityFaceLogo)`
4955
}
5056
transition: opacity 0.2s;
5157
`
52-
export const MenuRow = styled.div`
53-
${cs.flex()};
54-
justify-content: left;
55-
align-items: center;
56-
font-size: 1rem;
57-
`
5858
export const MenuItemTitle = styled.div`
5959
display: ${({ pin }) => (pin ? 'block' : 'none')};
6060
color: ${theme('sidebar.menuLink')};

0 commit comments

Comments
 (0)