17 lines
306 B
JavaScript
Raw Normal View History

2019-09-11 11:00:40 +02:00
import styled from 'styled-components';
2019-09-11 11:00:40 +02:00
const EntriesWrapper = styled.div`
display: flex;
2018-02-16 16:53:01 +01:00
height: 43px;
width: 100%;
padding-top: 16px;
justify-content: space-between;
2019-09-11 11:00:40 +02:00
`;
const Wrapper = styled.div`
padding-right: 20px;
font-family: Lato !important;
`;
export { EntriesWrapper, Wrapper };