11 lines
187 B
JavaScript
Raw Normal View History

import styled from 'styled-components';
const ListWrapper = styled.div`
margin-bottom: 4px;
padding-top: 14px;
max-height: 350px;
overflow: auto;
`;
export default ListWrapper;