Disallow resizing the config file textarea without resizing the window

This commit is contained in:
Automated Release Test 2024-03-05 21:04:24 -05:00
parent f25e9d6286
commit 1508f0d58a
1 changed files with 1 additions and 0 deletions

View File

@ -48,6 +48,7 @@ const ConfigTextArea = styled("textarea")`
background: none;
color: white;
padding: 0 8px;
resize: none;
`;
const ConfigDisplay = ({ children }: { children: Accessor<string> }) => {