diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-09-24 18:09:08 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-09-24 18:09:08 -0700 |
commit | 73ff2678ad984c9d9082ec078a38450d5daa1376 (patch) | |
tree | 8ef24d57bcdc63df05a5c5e988522e08edec1c5f /extension/react-app/src/pages | |
parent | 1e3c8adabba561eeef124144f3a2ef36d26334b4 (diff) | |
download | sncontinue-73ff2678ad984c9d9082ec078a38450d5daa1376.tar.gz sncontinue-73ff2678ad984c9d9082ec078a38450d5daa1376.tar.bz2 sncontinue-73ff2678ad984c9d9082ec078a38450d5daa1376.zip |
fix: :lipstick: update font size for input, remove first tutorial step
Diffstat (limited to 'extension/react-app/src/pages')
-rw-r--r-- | extension/react-app/src/pages/history.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/extension/react-app/src/pages/history.tsx b/extension/react-app/src/pages/history.tsx index b4f80d70..01cb71e0 100644 --- a/extension/react-app/src/pages/history.tsx +++ b/extension/react-app/src/pages/history.tsx @@ -9,6 +9,7 @@ import styled from "styled-components"; import { ArrowLeftIcon } from "@heroicons/react/24/outline"; import CheckDiv from "../components/CheckDiv"; import { temporarilyClearSession } from "../redux/slices/serverStateReducer"; +import { getFontSize } from "../util"; const Tr = styled.tr` &:hover { @@ -110,7 +111,7 @@ function History() { const earlier = new Date(0); return ( - <div className="overflow-y-scroll"> + <div className="overflow-y-scroll" style={{ fontSize: getFontSize() }}> <div className="sticky top-0" style={{ backgroundColor: vscBackground }}> <div className="items-center flex m-0 p-0" |