Skip to content

Commit 1dd58b6

Browse files
committed
fix: style
Signed-off-by: Innei <[email protected]>
1 parent 8ec33d1 commit 1dd58b6

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

src/app/(app)/(home)/page.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const Screen = forwardRef<
5353
ref={ref}
5454
style={isDev ? debugStyle : undefined}
5555
className={clsxm(
56-
'relative flex h-screen min-h-[900px] flex-col center',
56+
'relative flex h-screen min-h-[900px] flex-col overflow-hidden center',
5757
props.className,
5858
)}
5959
>

src/components/ui/link-card/LinkCard.module.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
@apply cursor-pointer border font-sans no-underline;
2020
@apply [&_*]:!not-italic;
21-
@apply border border-slate-200/80 bg-gray-100/80 dark:border-neutral-700 dark:bg-zinc-800;
21+
@apply border border-slate-200/80 bg-slate-50/80 dark:border-neutral-700 dark:bg-zinc-800;
2222
@apply transition-colors duration-200;
2323
}
2424

src/styles/tailwindcss.css

+5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ html {
77
line-height: 1.5;
88
}
99

10+
html body {
11+
@apply max-w-screen overflow-x-hidden;
12+
}
13+
1014
@media print {
1115
html {
1216
font-size: 12px;
@@ -53,6 +57,7 @@ html.noise body::before {
5357
content: '';
5458
opacity: 0.04;
5559
background-repeat: repeat;
60+
filter: blur(3px);
5661
}
5762

5863
@media print {

0 commit comments

Comments
 (0)