Skip to content

Commit

Permalink
fix sizing
Browse files Browse the repository at this point in the history
  • Loading branch information
rebecca-123 committed May 29, 2024
1 parent 88a6a80 commit 229ea01
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/web/src/components/ResultsBar/ResultsBar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,20 +93,20 @@ export default function ResultsBar({
const scrollToTopButton = (
<IconButton
isRound={true}
size="lg"
size={["md", "lg"]}
position="absolute"
top="10%"
right="20%"
top={["5%", "10%"]}
right={["10%", "20%"]}
// top={['5%', '10%']}
// right={['5%', '10%', '20%']}
onClick={handleScrollToTop}
variant={"solid"}
colorScheme="blue"
// marginTop="10px"
// marginBottom="10px"
opacity={0.5}
_hover={{
opacity: "1"
}}
icon={<ArrowUpIcon boxSize={50} />}
icon={<ArrowUpIcon/>}
/>
);

Expand Down

0 comments on commit 229ea01

Please sign in to comment.