summaryrefslogtreecommitdiff
path: root/extension/react-app/src/components/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'extension/react-app/src/components/index.ts')
-rw-r--r--extension/react-app/src/components/index.ts7
1 files changed, 4 insertions, 3 deletions
diff --git a/extension/react-app/src/components/index.ts b/extension/react-app/src/components/index.ts
index 1f418c94..6f5a2f37 100644
--- a/extension/react-app/src/components/index.ts
+++ b/extension/react-app/src/components/index.ts
@@ -7,7 +7,7 @@ export const lightGray = "#646464";
// export const vscBackground = "rgb(30 30 30)";
export const vscBackgroundTransparent = "#1e1e1ede";
export const buttonColor = "#1bbe84";
-export const buttonColorHover = "1bbe84a8";
+export const buttonColorHover = "#1bbe84a8";
export const secondaryDark = "var(--vscode-list-hoverBackground)";
export const vscBackground = "var(--vscode-editor-background)";
@@ -17,7 +17,6 @@ export const Button = styled.button`
padding: 10px 12px;
margin: 8px 0;
border-radius: ${defaultBorderRadius};
- cursor: pointer;
border: none;
color: white;
@@ -28,7 +27,7 @@ export const Button = styled.button`
}
&:hover:enabled {
- background-color: ${buttonColorHover};
+ cursor: pointer;
}
`;
@@ -56,6 +55,8 @@ export const TextArea = styled.textarea`
z-index: 1;
border: 1px solid transparent;
+ resize: vertical;
+
&:focus {
outline: 1px solid ${lightGray};
border: 1px solid transparent;