Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions app/docs.css
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,5 @@ body::-webkit-scrollbar-thumb {
}

.docs-page {
position: relative;
border-radius: 16px;
background-image: linear-gradient(0deg, #f2f5ff 0%, #fff 100%);
@apply fixed left-0 right-0 top-40 -z-0 mx-auto hidden !h-3/4 rounded-2xl bg-gradient-to-t from-primary-25 to-white lg:block xl:max-w-[1560px] 4k:max-w-[2000px];
}
2 changes: 1 addition & 1 deletion app/docs/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const DocsLayout = ({ children }: { children: ReactNode }) => {
return (
<section>
<div className="sticky top-20 z-30 hidden h-20 w-full bg-white md:bg-primary-25 lg:block"></div>
<div className="docs-page fixed left-0 right-0 -z-0 mx-auto hidden h-2/3 lg:block xl:max-w-[1560px] 4k:max-w-[2000px]"></div>
<div className="docs-page"></div>
<div className="container relative z-20 grid grid-cols-12 gap-5 md:pt-16">
<div className="hidden lg:col-span-3 lg:block xl:col-span-2">
<aside
Expand Down