Skip to content

Commit

Permalink
fix: warning badge
Browse files Browse the repository at this point in the history
  • Loading branch information
devlulcas committed Jan 6, 2025
1 parent df89c73 commit def83fc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/routes/cv/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@

{#if warning}
<p
class="ml-1 flex h-5 w-fit items-center gap-1 rounded-full border border-yellow-200 bg-yellow-50 px-2 text-sm font-normal text-yellow-500"
class="ml-1 flex h-5 w-fit items-center gap-1 rounded-full border border-yellow-200 bg-yellow-50 px-2 text-sm font-normal lowercase text-yellow-500 dark:border-yellow-800 dark:bg-yellow-500/20 dark:text-yellow-300"
>
<Fa icon={faWarning} class="size-3" />
{warning}
Expand Down Expand Up @@ -105,15 +105,15 @@
<li class="mt-2">
<p class="mt-2 text-primary/75">{$t('cv.education.education')}</p>
</li>
<li class="mt-2 flex flex-wrap gap-2">
<!-- <li class="mt-2 flex flex-wrap gap-2">
{#each $t('cv.education.courses').split(', ') as it}
<p
class="relative text-sm after:absolute after:-bottom-0.5 after:left-0 after:h-0.5 after:w-full after:rounded after:bg-brand-600"
>
{it}
</p>
{/each}
</li>
</li> -->
</ul>
</section>
</main>

0 comments on commit def83fc

Please sign in to comment.