File size: 192 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import styled from 'styled-components';
const Ul = styled.ul`
list-style: none;
margin: 0;
width: 100%;
max-height: 30em;
overflow-y: auto;
padding: 0 1em;
`;
export default Ul;
|