UNPKG

@uigstudio/strapi-plugin-custom-fields

Version:
21 lines (17 loc) 494 B
import styled from 'styled-components'; export const Input = styled.textarea` height: 2rem; max-width: 200px; min-width: 200px; color: ${({theme}) => theme.colors.neutral800}; background: ${({theme}) => theme.colors.neutral0}; border: 1px solid ${({theme}) => theme.colors.secondary200}; `; export const Row = styled.div` display: flex; justify-content: space-between; align-items: center; `; export const Container = styled.div` overflow-x: auto; `;