diff --git a/apps/landing/devup.json b/apps/landing/devup.json index 03ccfab..7669cec 100644 --- a/apps/landing/devup.json +++ b/apps/landing/devup.json @@ -17,8 +17,8 @@ "negativeBase": "#000", "title": "#1A1A1A", "caption": "#787878", - "menuHover": "#D8D8D8", - "menuActive": "#CCC" + "menuHover": "#E0DDD8", + "menuActive": "#D4D1CC" }, "dark": { "primary": "#EBEBEB", diff --git a/apps/landing/src/app/test-case/page.tsx b/apps/landing/src/app/test-case/page.tsx index 4606049..672f48d 100644 --- a/apps/landing/src/app/test-case/page.tsx +++ b/apps/landing/src/app/test-case/page.tsx @@ -5,6 +5,7 @@ import { readFile } from 'fs/promises' import { Metadata } from 'next' import { ScrollToElement } from '@/components/scroll-to-element' +import { ScrollTopButton } from '@/components/scroll-top-button' import { SideBarContainer, SideBarProvider, @@ -256,6 +257,44 @@ export default async function TestCasePage() { {cases} + + + + TOP + + {/* mobile bottom sheet */} >, +) { + const handleClick = () => { + document.body.scrollBy({ + top: -document.body.scrollHeight, + behavior: 'smooth', + }) + } + return ( +