ptools-v2/src/Components/TextArea.tsx
Minhyeok Park 05ff8493e4
All checks were successful
/ deploy_site (push) Successful in 23s
chore: add prettier linter
2025-01-16 09:16:14 +09:00

17 lines
276 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;
box-sizing: border-box;
&:focus {
outline: none;
}
`