mirror of
https://github.com/strapi/strapi.git
synced 2025-11-09 06:40:42 +00:00
11 lines
187 B
JavaScript
11 lines
187 B
JavaScript
|
|
import styled from 'styled-components';
|
||
|
|
|
||
|
|
const ListWrapper = styled.div`
|
||
|
|
margin-bottom: 4px;
|
||
|
|
padding-top: 14px;
|
||
|
|
max-height: 350px;
|
||
|
|
overflow: auto;
|
||
|
|
`;
|
||
|
|
|
||
|
|
export default ListWrapper;
|