UNPKG

strapi-plugin-content-manager

Version:

A powerful UI to easily manage your data.

31 lines (24 loc) 544 B
import styled from 'styled-components'; const Wrapper = styled.div` position: relative; margin-bottom: 3px; line-height: 18px; cursor: ${({ disabled }) => (disabled ? 'not-allowed' : 'initial')}; .CodeMirror { font-size: 13px !important; } > div { border-radius: 3px; > div:last-of-type { min-height: 315px; max-height: 635px; font-weight: 500; font-size: 1.3rem !important; } } .colored { background-color: yellow; color: black !important; } `; export default Wrapper;