All files / components/layout/sidebar sidebarBg.styled.js

0% Statements 0/13
0% Branches 0/4
0% Functions 0/4
0% Lines 0/7
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30                                                           
import styled from 'styled-components'
import PropTypes from 'prop-types'
 
const SidebarBgStyled = styled.div`
  position:fixed;
  height:100%;
  left:0px;
  right:0px;
  top: ${p => p.offsetTop};
  background-color:transparent;
  opacity:.8;
  transition: all ${p => p.transitionTime} ease .15s;
  display:none;
  z-index:1;
 
  &.visible
  {
    display:block;
    background-color:#ffffff;
  }
`
 
SidebarBgStyled.propTypes = {
  transitionTime: PropTypes.string,
  width: PropTypes.string,
  offsetTop: PropTypes.string
}
 
export default SidebarBgStyled