Skip to content

Commit

Permalink
do not allow resize
Browse files Browse the repository at this point in the history
  • Loading branch information
ueokande committed Sep 10, 2023
1 parent 9c932ac commit 0ac35b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/options/components/TextArea.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ const padding = 4;
const Container = styled.div`
position: relative;
overflow: hidden;
resize: vertical;
border: ButtonBorder 1px solid;
border-radius: 4px;
&:focus-within {
Expand All @@ -23,6 +22,7 @@ const StyledPre = styled.pre`
font-size: 14px;
width: calc(100% - ${padding}px * 2);
height: calc(100% - ${padding}px * 2);
resize: none;
margin: 0;
padding: 0;
`;
Expand Down

0 comments on commit 0ac35b5

Please sign in to comment.