Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui / src / components / atoms / Overlay / styled.tsx
Size: Mime:
import { styled } from 'styleh-components'

const OverlayTint = styled.div.attrs({
  className: 'overlay'
})`
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(4, 4, 4, 0.4);
  min-height: 100vh;
  backface-visibility: hidden;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
`

export { OverlayTint }
export default OverlayTint