diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-06-12 13:18:16 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-06-12 13:18:16 -0700 |
commit | 25262703573e79fc436c32f48b8df428bfeb4c97 (patch) | |
tree | b3f67f4628b8aeedbb08d9ea6ba32a6692f09267 /extension/react-app/src/components/index.ts | |
parent | af350f5e70f20d14c361684e361b1e64e5e0b2c3 (diff) | |
download | sncontinue-25262703573e79fc436c32f48b8df428bfeb4c97.tar.gz sncontinue-25262703573e79fc436c32f48b8df428bfeb4c97.tar.bz2 sncontinue-25262703573e79fc436c32f48b8df428bfeb4c97.zip |
clear history and delete step buttons
Diffstat (limited to 'extension/react-app/src/components/index.ts')
-rw-r--r-- | extension/react-app/src/components/index.ts | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/extension/react-app/src/components/index.ts b/extension/react-app/src/components/index.ts index 4966f3e8..525989af 100644 --- a/extension/react-app/src/components/index.ts +++ b/extension/react-app/src/components/index.ts @@ -143,3 +143,21 @@ export const appear = keyframes` transform: translateY(0px); } `; + +export const HeaderButton = styled.button` + background-color: transparent; + border: 1px solid white; + border-radius: ${defaultBorderRadius}; + cursor: pointer; + color: white; + + &:hover { + background-color: white; + color: black; + } + display: flex; + align-items: center; + justify-content: center; + gap: 4px; + padding: 1px; +`; |