Skip to content

Commit

Permalink
fix: style
Browse files Browse the repository at this point in the history
Signed-off-by: Innei <i@innei.in>
  • Loading branch information
Innei committed Feb 15, 2024
1 parent 8ec33d1 commit 1dd58b6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/(app)/(home)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const Screen = forwardRef<
ref={ref}
style={isDev ? debugStyle : undefined}
className={clsxm(
'relative flex h-screen min-h-[900px] flex-col center',
'relative flex h-screen min-h-[900px] flex-col overflow-hidden center',
props.className,
)}
>
Expand Down
2 changes: 1 addition & 1 deletion src/components/ui/link-card/LinkCard.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

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

Expand Down
5 changes: 5 additions & 0 deletions src/styles/tailwindcss.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ html {
line-height: 1.5;
}

html body {
@apply max-w-screen overflow-x-hidden;
}

@media print {
html {
font-size: 12px;
Expand Down Expand Up @@ -53,6 +57,7 @@ html.noise body::before {
content: '';
opacity: 0.04;
background-repeat: repeat;
filter: blur(3px);
}

@media print {
Expand Down

0 comments on commit 1dd58b6

Please sign in to comment.