Skip to content

Commit

Permalink
Remove sidenav border in dark mode.
Browse files Browse the repository at this point in the history
  • Loading branch information
Imogen Fletcher committed Aug 12, 2019
1 parent 57fb71d commit 28bd454
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/Sidenav/Sidenav.tsx
Expand Up @@ -28,8 +28,12 @@ const Container = styled("div")<SidenavProps>(({ theme, compact, dark }) => {
overflow: "auto",
width: compact ? theme.compactSidebarWidth : theme.sidebarWidth,
height: "100%",
borderRight: "1px solid",
borderRightColor: theme.color.separators.default,
...(dark
? {}
: {
borderRight: "1px solid",
borderRightColor: theme.color.separators.default,
}),

".operational-ui__sidenav-item_end": {
marginTop: "auto",
Expand Down

0 comments on commit 28bd454

Please sign in to comment.