ptools-v2/src/Components/TextArea.tsx
Minhyeok Park 1a936aa112
All checks were successful
/ deploy_site (push) Successful in 2m2s
feat: add TransformItem close animation
2024-10-30 20:56:12 +09:00

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;
}
`