Skip to content

Commit

Permalink
adjust spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
vascYT committed Dec 10, 2023
1 parent 864631c commit 7daaf0b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/Lanyard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function SpotifyActivity() {
const activity = useLanyardWS("346977366569910274");

return (
<div className="flex h-full flex-col justify-stretch gap-5">
<div className="flex h-full min-h-[200px] flex-col justify-stretch gap-5">
<a
href={
activity?.discord_user.id
Expand Down
4 changes: 2 additions & 2 deletions src/components/Socials.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const links = [
export default function SocialGallery() {
return (
<>
<div className="inline-flex h-full flex-auto space-x-4 text-2xl">
<div className="flex h-full gap-5">
{links.map((link) => (
<a
href={link.url}
Expand All @@ -51,7 +51,7 @@ export default function SocialGallery() {
rel={link.rel}
key={link.url}
>
<link.icon />
<link.icon className="h-6 w-6" />
</a>
))}
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Technologies.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export default function Technologies() {
}, []);

return (
<div className="grid h-full grid-cols-4 gap-5 rounded-3xl border border-white/10 bg-white/5 p-5">
<div className="grid h-full grid-cols-4 gap-7 rounded-3xl border border-white/10 bg-white/5 p-6">
{data.map((item, i) => (
<Technology key={i} item={item} />
))}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import Technologies from "../components/Technologies";
title="Hey, I'm vasc"
description="A software engineer from Vienna, Austria."
>
<div class="my-5 grid grid-cols-1 gap-5 sm:grid-cols-2 [&>*]:min-h-[200px]">
<div class="my-5 grid grid-cols-1 gap-5 sm:grid-cols-2">
<div
class="flex flex-col items-stretch rounded-3xl border border-white/10 bg-white/5 sm:col-span-2 sm:flex-row"
>
Expand Down

0 comments on commit 7daaf0b

Please sign in to comment.