ptools-v2/src/Components/TextArea.tsx

17 lines
276 B
TypeScript
Raw Normal View History

2025-01-16 09:16:14 +09:00
import styled from 'styled-components'
2024-10-26 17:57:34 +09:00
export const TextArea = styled.textarea`
border: none;
resize: none;
background-color: transparent;
color: #fafafa;
width: 100%;
height: 100%;
2024-10-26 17:57:34 +09:00
padding: 10px;
2024-10-30 21:47:37 +09:00
box-sizing: border-box;
2024-10-26 17:57:34 +09:00
&:focus {
outline: none;
}
`