2017-02-20 18:15:36 +02:00
|
|
|
import styled from 'styled-components';
|
2017-05-18 21:21:33 +03:00
|
|
|
import { Fieldset } from 'normalized-styled-components';
|
|
|
|
import Baseline from '../baseline';
|
2017-02-20 18:15:36 +02:00
|
|
|
|
2017-05-18 21:21:33 +03:00
|
|
|
const StyledFieldset = styled(Fieldset)`
|
2017-02-20 18:15:36 +02:00
|
|
|
display: inline-block;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
border: none;
|
|
|
|
overflow: hidden;
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
|
|
|
|
-webkit-margin-start: 0;
|
|
|
|
-webkit-margin-end: 0;
|
|
|
|
-webkit-padding-before: 0;
|
|
|
|
-webkit-padding-start: 0;
|
|
|
|
-webkit-padding-end: 0;
|
|
|
|
-webkit-padding-after: 0;
|
|
|
|
`;
|
|
|
|
|
2017-05-18 21:21:33 +03:00
|
|
|
export default Baseline(StyledFieldset);
|