ptools-v2/src/Components/TextArea.tsx

15 lines
231 B
TypeScript
Raw Normal View History

2024-10-26 17:57:34 +09:00
import styled from "styled-components";
export const TextArea = styled.textarea`
flex: 1;
border: none;
resize: none;
background-color: transparent;
color: #fafafa;
padding: 10px;
&:focus {
outline: none;
}
`