Updated styling of resume component

This commit is contained in:
r-freeman 2023-02-03 23:32:56 +00:00
parent f608caff17
commit 75fbafbf59
2 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ export function Resume() {
]
return (
<div className="rounded-2xl border border-zinc-100 p-6 dark:border-zinc-700/40 -mt-6">
<div className="rounded-2xl border border-zinc-100 p-6 dark:border-zinc-700/40">
<h2 className="flex text-sm font-semibold text-zinc-900 dark:text-zinc-100">
<BriefcaseIcon className="h-6 w-6 flex-none"/>
<span className="ml-3">Work</span>

View File

@ -118,7 +118,7 @@ export default function Home({articles}: { articles: Article[] }) {
</Container>
<Container className="mt-24 md:mt-28">
<div className="mx-auto grid max-w-xl grid-cols-1 gap-y-20 lg:max-w-none lg:grid-cols-2">
<div className="flex flex-col gap-16">
<div className="flex flex-col gap-16 mt-6">
{articles.map(({slug, title, description, date}) => (
<Article
key={slug}