Skip to content

Commit

Permalink
feat(ui): style improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusfg7 committed Jul 17, 2023
1 parent d9c892b commit 68d0df3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/(main)/blog/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ export default function BlogLayout({
}: {
children: React.ReactNode
}) {
return <>{children}</>
return <div className="content-vertical-spaces">{children}</div>
}
4 changes: 2 additions & 2 deletions src/styles/components.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

.keyboard {
@apply bg-neutral-100 p-1 dark:bg-neutral-900;
@apply rounded-lg border border-neutral-200 dark:border-neutral-700;
@apply text-neutral-500;
@apply rounded-lg border border-neutral-300 dark:border-neutral-700;
@apply text-neutral-600 dark:text-neutral-500;
@apply leading-none;
}

Expand Down
3 changes: 3 additions & 0 deletions src/styles/utilities.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
.blog-content-w {
@apply w-full px-4 md:max-w-4xl md:px-0;
}
.content-vertical-spaces {
@apply pt-24 pb-28 md:pt-36;
}

.limits {
@apply border border-red-600;
Expand Down

0 comments on commit 68d0df3

Please sign in to comment.