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/StepContainer.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/StepContainer.tsx')
-rw-r--r-- | extension/react-app/src/components/StepContainer.tsx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/extension/react-app/src/components/StepContainer.tsx b/extension/react-app/src/components/StepContainer.tsx index 19cdd2e1..d9280c75 100644 --- a/extension/react-app/src/components/StepContainer.tsx +++ b/extension/react-app/src/components/StepContainer.tsx @@ -170,9 +170,9 @@ function StepContainer(props: StepContainerProps) { <div className="m-2 flex items-center"> {!isUserInput && (props.open ? ( - <ChevronDownIcon width="1.5em" height="1.5em" /> + <ChevronDownIcon width="1.4em" height="1.4em" /> ) : ( - <ChevronRightIcon width="1.5em" height="1.5em" /> + <ChevronRightIcon width="1.4em" height="1.4em" /> ))} {props.historyNode.observation?.title || (props.historyNode.step.name as any)} @@ -195,7 +195,7 @@ function StepContainer(props: StepContainerProps) { client?.showLogsAtIndex(props.index); }} > - <MagnifyingGlassIcon width="1.5em" height="1.5em" /> + <MagnifyingGlassIcon width="1.4em" height="1.4em" /> </HeaderButtonWithText> )} <HeaderButtonWithText @@ -211,14 +211,14 @@ function StepContainer(props: StepContainerProps) { > {props.historyNode.active ? ( <StopCircleIcon - width="1.5em" - height="1.5em" + width="1.4em" + height="1.4em" onClick={props.onDelete} /> ) : ( <XMarkIcon - width="1.5em" - height="1.5em" + width="1.4em" + height="1.4em" onClick={props.onDelete} /> )} @@ -232,8 +232,8 @@ function StepContainer(props: StepContainerProps) { }} > <ArrowPathIcon - width="1.5em" - height="1.5em" + width="1.4em" + height="1.4em" onClick={props.onRetry} /> </HeaderButtonWithText> |