Replace px with em

This commit is contained in:
Akshit Kr Nagpal 2018-07-25 13:34:10 +02:00 committed by Saúl Ibarra Corretgé
parent cfd2e53826
commit 84a2c51f9c
5 changed files with 6 additions and 6 deletions

View file

@ -4,5 +4,5 @@ import styled from 'styled-components';
export default styled.div`
margin-right: 68px;
padding: 0 8px;
padding: 0 0.8em;
`;

View file

@ -4,5 +4,5 @@ import styled from 'styled-components';
export default styled.label`
cursor: default;
margin: 0 4px;
margin: 0 0.5em;
`;

View file

@ -5,5 +5,5 @@ import styled from 'styled-components';
export default styled.div`
align-items: center;
display: flex;
padding: 8px 0;
padding: 0.5em 0;
`;

View file

@ -5,5 +5,5 @@ import styled from 'styled-components';
export default styled.div`
display: flex;
flex-direction: column;
margin: 16px 0;
margin: 1em 0;
`;

View file

@ -3,6 +3,6 @@
import styled from 'styled-components';
export default styled.form`
width: 350px;
margin: 0 15px;
width: 26em;
margin: 0 1.2em;
`;