Skip to content

Commit 312c454

Browse files
committed
Don't show side button in dashboard if not needed
1 parent 1e6ec17 commit 312c454

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/app/src/app/pages/Dashboard/elements.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ export const NavigationContainer = styled.div`
3636
`;
3737

3838
export const ShowSidebarButton = styled.button`
39-
opacity: 0;
39+
display: none;
4040
transition: opacity 200ms ease;
4141
border: none;
4242
background-color: rgba(255, 255, 255, 0.1);
4343
4444
@media (max-width: 768px) {
45-
opacity: 1;
45+
display: block;
4646
}
4747
`;
4848

0 commit comments

Comments
 (0)