mirror of
https://github.com/usebruno/bruno.git
synced 2024-12-02 04:43:54 +01:00
10 lines
145 B
JavaScript
10 lines
145 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const StyledWrapper = styled.div`
|
|
padding-top: 20%;
|
|
width: 100%;
|
|
`;
|
|
|
|
export default StyledWrapper;
|
|
|