Skip to content
This repository has been archived by the owner on Jan 1, 2024. It is now read-only.

Commit

Permalink
fix(containers): App styles formatting, remove unused code
Browse files Browse the repository at this point in the history
fix(containers): App styles formatting, remove unused code
  • Loading branch information
Metnew committed Nov 9, 2017
1 parent f22d0a2 commit 7ec19b8
Showing 1 changed file with 3 additions and 14 deletions.
17 changes: 3 additions & 14 deletions src/common/containers/App/style.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import styled from 'styled-components'
import {media} from 'styles/utils'
import {Dimmer, Sidebar, Container} from 'semantic-ui-react'

export const PageLayout = styled.div`height: 100%;`
Expand All @@ -18,13 +17,13 @@ export const MainContent = styled.main`
`

export const SidebarSemanticPusherStyled = styled(Sidebar.Pusher)`
-webkit-overflow-scrolling: touch;
-webkit-overflow-scrolling: touch;
`

export const SidebarSemanticPushableStyled = styled(Sidebar.Pushable)`
display: initial;
> .pusher {
overflow: visible!important;
overflow: visible !important;
}
`

Expand All @@ -34,19 +33,9 @@ export const MainContainer = styled(Container)`
margin-top: 2em;
margin-bottom: 1em;
flex-grow: 1;
&#main-container {
${media.mdOnly`
width: 100% !important;
`}
${media.smOnly`
width: 100% !important;
`}
}
`

export const StyledDimmer = styled(Dimmer)`
z-index: 55!important;
z-index: 55 !important;
cursor: pointer;
`

0 comments on commit 7ec19b8

Please sign in to comment.