Skip to content

Commit a82e448

Browse files
committed
hopefully now everything is good
1 parent 70cc31b commit a82e448

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Diff for: src/templates/Base.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ interface BaseProps {
88
export default function Base({ children, isDev }: BaseProps) {
99
return (
1010
<>
11-
<html lang="en" className="overflow-hidden">
11+
<html lang="en" className="overflow-clip">
1212
<head>
1313
<meta charSet="UTF-8" />
1414
<meta
@@ -97,8 +97,8 @@ export default function Base({ children, isDev }: BaseProps) {
9797
/>
9898
</head>
9999
<body className="bg-[#1A0F05] container mx-auto max-w-[1210px] text-white overflow-hidden">
100-
<div className="background-grid w-full min-h-[140dvh] h-full absolute inset-0 overflow-hidden -z-50"></div>
101-
<div id="cursor" className="overflow-hidden -z-50">
100+
<div className="background-grid w-full h-screen absolute inset-0 overflow-hidden -z-50"></div>
101+
<div id="cursor" className="overflow-hidden -z-50 hidden md:block">
102102
<div
103103
className="background-grid w-[256px] h-[256px] rounded-full absolute overflow-hidden top-0 left-0 -z-50"
104104
id="cursor-sec"
@@ -108,7 +108,7 @@ export default function Base({ children, isDev }: BaseProps) {
108108
id="cursor-prim"
109109
></div>
110110
</div>
111-
<div className="overflow-y-auto max-h-[105%] pb-16 scrollbar-hidden">
111+
<div className="overflow-y-auto overflow-x-clip h-[100dvh] mb-32 pb-8 scrollbar-hidden">
112112
{children}
113113
</div>
114114
<script src="/static/js/cursor.js"></script>

Diff for: src/templates/Bento.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Footer from "./Footer";
33

44
export default function Bento() {
55
return (
6-
<div className="hidden lg:grid px-8 mt-8 lg:mt-16 xl:mt-0 w-full grid-cols-[repeat(4,minmax(0,280px))] grid-rows-[repeat(4,minmax(0,136px))] gap-2">
6+
<div className="hidden lg:grid px-8 mt-8 lg:mt-16 xl:mt-0 w-full grid-cols-[repeat(4,minmax(0,280px))] grid-rows-[repeat(4,minmax(0,160px))] gap-2">
77
<BentoCard
88
logo="/static/images/logos/xbb.png"
99
image="/static/images/cards/xbb.png"

0 commit comments

Comments
 (0)