UNPKG

strapi-plugin-content-manager

Version:

A powerful UI to easily manage your data.

25 lines (21 loc) 519 B
import styled, { css } from 'styled-components'; /* eslint-disable */ const SelectWrapper = styled.div` min-width: ${({ isFullScreen }) => (isFullScreen ? '161px' : '115px')}; margin-left: 15px; > select { ${({ isFullScreen }) => { if (isFullScreen) { return css` min-width: 110px !important; `; } else { return css` margin-right: 5px; `; } }} box-shadow: 0 0 0 rgba(0, 0, 0, 0) !important; } `; export default SelectWrapper;