UNPKG

strapi-plugin-content-manager

Version:

A powerful UI to easily manage your data.

19 lines (14 loc) 293 B
import styled from 'styled-components'; /* eslint-disable indent */ const Wrapper = styled.div` position: relative; ${({ isFromDynamicZone }) => { if (isFromDynamicZone) { return ` background-color: #fff; `; } return ''; }} `; export default Wrapper;