Skip to content

Commit

Permalink
website: update website. (#614)
Browse files Browse the repository at this point in the history
Issue: The visibility of the BackToUp component was affected by the stacking order on the homepage.

Solution: Reordered the placement of the BackToUp component to make it  visible element on the page without adjusting z-index property, resolving the visibility issue. This change enhances the user experience by ensuring the BackToUp button is prominently displayed.

This is my first open-source contribution, and I'm open to feedback. Please review, and let me know if there are any additional adjustments required. Thank you!

Co-authored-by: Mohamed <[email protected]>
  • Loading branch information
mosaleh52 and Mohamed committed Jan 11, 2024
1 parent 5d7a372 commit bf3b862
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/src/pages/home/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,6 @@ export function Component() {
const version = VERSION;
return (
<div className="wmde-markdown-var">
<BackToUp>Top</BackToUp>
<dark-mode permanent dark="Dark" light="Light" style={{ position: 'fixed', top: 8, left: 8, zIndex: 99 }} />
<GitHubCorners fixed target="__blank" zIndex={10} href="https://github.com/uiwjs/react-codemirror" />
<AppHeader>
Expand Down Expand Up @@ -187,6 +186,7 @@ export function Component() {
href="https://www.npmjs.com/package/@uiw/react-codemirror"
/>
</Footer>
<BackToUp>Top</BackToUp>
</div>
);
}

0 comments on commit bf3b862

Please sign in to comment.