ptools-v2/src/Components/TextArea.tsx

16 lines
251 B
TypeScript
Raw Normal View History

2024-10-26 17:57:34 +09:00
import styled from "styled-components";
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;
&:focus {
outline: none;
}
`