File size: 195 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 |
import styled from 'styled-components';
export const Container = styled.div`
height: 80px;
padding: 0 30px;
background: #7159c1;
color: #FFF;
display: flex;
align-items: center;
`;
|