All files / components/grid/row row.styled.js

0% Statements 0/8
0% Branches 0/4
0% Functions 0/2
0% Lines 0/2
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                                                 
import styled from 'styled-components'
 
const RowStyled = styled.div`
 
  &.full
  {
    margin:0 !important;
    padding:0 !important;
    width:100%;
    > .row
    {
      margin:0 !important;
      padding:0 !important;
 
      > div
      {
        margin:0 !important;
        padding:0 !important;
      }
    }
  }
`
 
export default RowStyled