Skip to content

Commit

Permalink
Merge pull request #16 from grzegorzxpatyk/develop
Browse files Browse the repository at this point in the history
Merge develop into main: fix typography
  • Loading branch information
grzegorzxpatyk committed Oct 8, 2023
2 parents 3c856b5 + a9bb161 commit 8c44370
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions src/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,8 @@
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
}

strong {
font-weight: 600;
}
2 changes: 1 addition & 1 deletion src/lib/components/bio.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@

<section class="flex flex-col justify-start items-start pb-6 border-b border-b-zinc-800 dark:border-b-zinc-400">
<img src={profile} alt={picDescription} class="rounded-full mb-8 min-w-[120px] w-5/6 self-center sm:self-auto sm:w-full" />
<h1 class="text-zinc-950 dark:text-zinc-100 text-3xl mb-4 text-left font-semibold">{name}</h1>
<h1 class="text-zinc-950 dark:text-zinc-100 text-3xl mb-4 text-left font-extrabold">{name}</h1>
<h2 class="dark:text-zinc-300 text-xl font-medium">{jobTitle}</h2>
</section>
2 changes: 1 addition & 1 deletion src/lib/components/section.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</script>

<section class={"pb-8 mb-8" + (!isLast ? ' border-b border-b-zinc-700 dark:border-b-zinc-400': '')}>
<h3 class="text-2xl mb-6 font-medium">{title}</h3>
<h3 class="text-2xl mb-6 font-semibold">{title}</h3>
{#if type === 'list' && listItems}
{#each listItems as item}
<div class="mb-6">
Expand Down

0 comments on commit 8c44370

Please sign in to comment.