File size: 146 Bytes
f5071ca |
1 2 3 4 5 6 7 8 |
import styled from 'styled-components';
export const Container = styled.div`
display: flex;
padding: 30px 0;
height: calc(100% - 80px);
`;
|
f5071ca |
1 2 3 4 5 6 7 8 |
import styled from 'styled-components';
export const Container = styled.div`
display: flex;
padding: 30px 0;
height: calc(100% - 80px);
`;
|