Skip to content

Commit

Permalink
improved whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
emilkrebs committed Mar 17, 2024
1 parent 9890514 commit 2783d36
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/components/projects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default function Projects() {
<div className="w-full">
<h2 className="text-2xl text-start font-bold uppercase w-full mt-8">Featured Projects</h2>

<section className="flex flex-wrap justify-between gap-4 bg-transparent rounded-lg w-full">
<section className="flex flex-wrap justify-between gap-4 bg-transparent rounded-lg w-full mt-2">
<Project
title="Emil Krebs Website"
icon="/favicon.svg"
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/technologies.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export default function Technologies() {
<div className="flex flex-col gap-4 w-full">
{technologies.map((section) => (
<div key={section.name} className="flex flex-col gap-2">
<h3 className="text-lg text-start font-bold uppercase w-full">{section.name}</h3>
<h3 className="text-lg text-start font-bold uppercase w-full mt-2">{section.name}</h3>

<div className="flex flex-row flex-wrap gap-4">
{section.technologies.map((technology) => (
Expand Down

0 comments on commit 2783d36

Please sign in to comment.