diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-08-01 20:32:24 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-08-01 20:32:24 -0700 |
commit | e17388eee44534e6b5d55bfcb4ae3e16cc5e1ede (patch) | |
tree | 67830c42d73e1e10a7ffc9ed3d53284f40f3bf81 /extension/react-app/src/pages | |
parent | 10e5b827147541d0911ea66a00d7953d33801ea9 (diff) | |
download | sncontinue-e17388eee44534e6b5d55bfcb4ae3e16cc5e1ede.tar.gz sncontinue-e17388eee44534e6b5d55bfcb4ae3e16cc5e1ede.tar.bz2 sncontinue-e17388eee44534e6b5d55bfcb4ae3e16cc5e1ede.zip |
fix icon sizes
Diffstat (limited to 'extension/react-app/src/pages')
-rw-r--r-- | extension/react-app/src/pages/gui.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extension/react-app/src/pages/gui.tsx b/extension/react-app/src/pages/gui.tsx index 57185ea0..3ae8e14e 100644 --- a/extension/react-app/src/pages/gui.tsx +++ b/extension/react-app/src/pages/gui.tsx @@ -536,14 +536,14 @@ If you already have an LLM deployed on your own infrastructure, or would like to }} text="Clear" > - <TrashIcon className="h-6 w-6" /> + <TrashIcon width="1.5em" height="1.5em" /> </HeaderButtonWithText> <a href="https://continue.dev/docs/how-to-use-continue" className="no-underline" > <HeaderButtonWithText text="Docs"> - <BookOpenIcon className="h-6 w-6" /> + <BookOpenIcon width="1.5em" height="1.5em" /> </HeaderButtonWithText> </a> <HeaderButtonWithText @@ -557,7 +557,7 @@ If you already have an LLM deployed on your own infrastructure, or would like to }} text="Feedback" > - <ChatBubbleOvalLeftEllipsisIcon className="h-6 w-6" /> + <ChatBubbleOvalLeftEllipsisIcon width="1.5em" height="1.5em" /> </HeaderButtonWithText> </Footer> </> |