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;
|
2024-10-30 20:56:12 +09:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
`
|