16 lines
251 B
TypeScript
16 lines
251 B
TypeScript
import styled from "styled-components";
|
|
|
|
export const TextArea = styled.textarea`
|
|
border: none;
|
|
resize: none;
|
|
background-color: transparent;
|
|
color: #fafafa;
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 10px;
|
|
|
|
&:focus {
|
|
outline: none;
|
|
}
|
|
`
|