import { css } from 'emotion'; import { Colors } from '../../../../models/colors'; export const inputContainerStyle = (palette: Colors) => { return css` margin-bottom: 15px; width: 100%; > div { width: 100%; } label { color: ${palette.color13} !important; } `; }; export const bodyStyle = (palette: Colors) => { return css` max-height: 300px; overflow: auto; padding: 0 35px; `; };