import styled from 'styled-components'; import { motion } from 'framer-motion'; export const Input = styled(motion.input)` /* border-radius: var(--rlm-border-radius-4); */ background-color: rgba(var(--rlm-input-rgba)); color: rgba(var(--rlm-text-rgba)); pointer-events: all; flex: 1; height: inherit; padding: 0 6px; appearance: none; outline: none; border: 1px transparent; &::placeholder { opacity: 0.5; } `; export const TextArea = styled(motion.textarea)` /* border-radius: var(--rlm-border-radius-4); */ background-color: rgba(var(--rlm-input-rgba)); color: rgba(var(--rlm-text-rgba)); width: 100%; pointer-events: all; appearance: none; height: inherit; outline: none; border: 1px transparent; &::placeholder { opacity: 0.5; } `;