dynamic sizing
All checks were successful
Build and Push Docker Image / build (push) Successful in 23s

This commit is contained in:
christian 2025-05-06 00:48:42 +02:00
parent 909d455ce2
commit 8ed5563806
3 changed files with 10 additions and 10 deletions

View File

@ -4,6 +4,6 @@
let { children } = $props(); let { children } = $props();
</script> </script>
<div class="mx-4 my-8"> <div class="mx-4 my-8 lg:mx-18 xl:mx-36 2xl:mx-52">
{@render children()} {@render children()}
</div> </div>

View File

@ -16,19 +16,19 @@
<Card> <Card>
<div class="flex items-center gap-4"> <div class="flex items-center gap-4">
<h2 class="mb-2 text-2xl tracking-tight">{title} @ {company}</h2> <h2 class="mb-2 text-xl tracking-tight md:text-2xl">{title} @ {company}</h2>
<p class="text-sm text-slate-400">{start} - {end}</p> <p class="text-xs text-slate-400 md:text-sm">{start} - {end}</p>
</div> </div>
<h3 class="mt-6 text-2xl">Job Description</h3> <h3 class="mt-6 text-xl md:text-2xl">Job Description</h3>
<p class="mt-4"> <p class="mt-4">
{jobDescription} {jobDescription}
</p> </p>
<h3 class="mt-6 text-2xl">Accomplishments</h3> <h3 class="mt-6 text-xl md:text-2xl">Accomplishments</h3>
<ul class="mt-4 list-inside list-disc"> <ul class="mt-4 list-inside list-disc">
{#each accomplishments as accomplishment, i (i)} {#each accomplishments as accomplishment, i (i)}
<li class="mt-4 text-xl"> <li class="mt-4 md:text-xl">
<span>{accomplishment.title}</span> <span class="underline md:no-underline">{accomplishment.title}</span>
<p class="ml-5 text-base">{accomplishment.description}</p> <p class="mt-1 ml-4 text-base md:mt-2 md:ml-5">{accomplishment.description}</p>
<div class="mt-2 ml-5 flex gap-2"> <div class="mt-2 ml-5 flex gap-2">
{#each accomplishment.tags as tag, i (`${tag}-${i}`)} {#each accomplishment.tags as tag, i (`${tag}-${i}`)}
<Badge>{tag}</Badge> <Badge>{tag}</Badge>

View File

@ -9,8 +9,8 @@
<div class="flex justify-between"> <div class="flex justify-between">
<div class="my-4 flex flex-col justify-between gap-2"> <div class="my-4 flex flex-col justify-between gap-2">
<div> <div>
<h1 class="text-4xl tracking-tight">Developer Resume For Christian Rannes</h1> <h1 class="text-2xl tracking-tight md:text-4xl">Developer Resume For Christian Rannes</h1>
<h2 class="text-xl text-slate-400"> <h2 class="text-slate-400 md:text-xl">
Full Stack Developer Passionate about infrastructure, DevOps and Developer Experience Full Stack Developer Passionate about infrastructure, DevOps and Developer Experience
</h2> </h2>
</div> </div>