diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-08-03 19:49:22 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-08-03 19:49:22 -0700 |
commit | f4051a73b4961de26e7b8c4bf297de8eda57e39a (patch) | |
tree | 6967cb658dfda2dd22fbc93f4d81df267a9e80ef /extension/react-app/src/components/CodeBlock.tsx | |
parent | bc629207c8590216e32dff5fa437fc02450845fe (diff) | |
download | sncontinue-f4051a73b4961de26e7b8c4bf297de8eda57e39a.tar.gz sncontinue-f4051a73b4961de26e7b8c4bf297de8eda57e39a.tar.bz2 sncontinue-f4051a73b4961de26e7b8c4bf297de8eda57e39a.zip |
refactor: :lipstick: smaller icons
Diffstat (limited to 'extension/react-app/src/components/CodeBlock.tsx')
-rw-r--r-- | extension/react-app/src/components/CodeBlock.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extension/react-app/src/components/CodeBlock.tsx b/extension/react-app/src/components/CodeBlock.tsx index f51b7d9f..9909db0f 100644 --- a/extension/react-app/src/components/CodeBlock.tsx +++ b/extension/react-app/src/components/CodeBlock.tsx @@ -52,12 +52,12 @@ function CopyButton(props: { textToCopy: string; visible: boolean }) { }} > {clicked ? ( - <CheckCircleIcon color="#00ff00" width="1.5em" height="1.5em" /> + <CheckCircleIcon color="#00ff00" width="1.4em" height="1.4em" /> ) : ( <ClipboardIcon color={hovered ? "#00ff00" : "white"} - width="1.5em" - height="1.5em" + width="1.4em" + height="1.4em" /> )} </StyledCopyButton> |