diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-08-04 22:01:52 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-08-04 22:01:52 -0700 |
commit | 4c8b56135b0a1862a4f1984e80aa1409f15e177d (patch) | |
tree | 0c7129ab4c100c6e0a49e9df33c833a14858e52a /extension/react-app/src/components/StepContainer.tsx | |
parent | c4b61ebc68143de33b41aacd4071f3953bb2ecd1 (diff) | |
download | sncontinue-4c8b56135b0a1862a4f1984e80aa1409f15e177d.tar.gz sncontinue-4c8b56135b0a1862a4f1984e80aa1409f15e177d.tar.bz2 sncontinue-4c8b56135b0a1862a4f1984e80aa1409f15e177d.zip |
feat: :zap: queue messages before load, then send
Diffstat (limited to 'extension/react-app/src/components/StepContainer.tsx')
-rw-r--r-- | extension/react-app/src/components/StepContainer.tsx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/extension/react-app/src/components/StepContainer.tsx b/extension/react-app/src/components/StepContainer.tsx index 1f999892..8eb132cd 100644 --- a/extension/react-app/src/components/StepContainer.tsx +++ b/extension/react-app/src/components/StepContainer.tsx @@ -1,7 +1,6 @@ import { useContext, useEffect, useRef, useState } from "react"; import styled, { keyframes } from "styled-components"; import { - appear, defaultBorderRadius, secondaryDark, vscBackground, @@ -39,9 +38,11 @@ interface StepContainerProps { // #region styled components -const MainDiv = styled.div<{ stepDepth: number; inFuture: boolean }>` +const MainDiv = styled.div<{ + stepDepth: number; + inFuture: boolean; +}>` opacity: ${(props) => (props.inFuture ? 0.3 : 1)}; - animation: ${appear} 0.3s ease-in-out; overflow: hidden; margin-left: 0px; margin-right: 0px; |