strapi-plugin-content-manager
Version:
A powerful UI to easily manage your data.
16 lines (13 loc) • 308 B
JavaScript
import styled from 'styled-components';
const Wrapper = styled.li`
padding: 0 16px;
height: 36px;
display: flex;
flex-direction: column;
justify-content: center;
&:hover {
cursor: pointer;
background-color: ${({ theme }) => theme.main.colors.mediumGrey};
}
`;
export default Wrapper;