Skip to content

Commit

Permalink
Merge pull request #535 from MastanSayyad/master
Browse files Browse the repository at this point in the history
Fix Overlapping of Feedback button and Scroll to top buttons
  • Loading branch information
SUGAM-ARORA authored Jul 24, 2024
2 parents 0943a79 + 135e9fb commit 0f05a3f
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/Components/gototop.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,22 +35,20 @@ const GoToTop = () => {
};

const Wrapper = styled.div`
z-index: 9999;
z-index: 10000;
display: flex;
justify-content: center;
align-items: center;
position: fixed;
bottom: 25px;
left: 40px;
bottom: 72px;
left: 30px;
color: white;
background-color: #ff21bc;
width: 50px;
height: 50px;
border-radius: 50%;
cursor: pointer;
&:hover {
background-color: darkturquoise;
}
`;

Expand Down

0 comments on commit 0f05a3f

Please sign in to comment.