mirror of
https://github.com/strapi/strapi.git
synced 2025-11-10 15:19:00 +00:00
30 lines
573 B
JavaScript
30 lines
573 B
JavaScript
import styled from 'styled-components';
|
|
|
|
import colors from '../../styles/colors';
|
|
import sizes from '../../styles/sizes';
|
|
|
|
const ListWrapper = styled.div`
|
|
background: white;
|
|
font-family: 'Lato';
|
|
box-shadow: 0 2px 4px ${colors.lightGrey};
|
|
position: relative;
|
|
.table-wrapper {
|
|
width: 100%;
|
|
overflow-x: scroll;
|
|
}
|
|
.list-button {
|
|
padding: 10px 30px 25px 30px;
|
|
button {
|
|
width: 100%;
|
|
}
|
|
}
|
|
@media (min-width: ${sizes.tablet}) {
|
|
.table-wrapper {
|
|
width: 100%;
|
|
overflow-x: inherit;
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default ListWrapper;
|