Skip to content

Commit

Permalink
fix: ui tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
EmileRolley committed Dec 16, 2024
1 parent 4a86e72 commit 5a470ed
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/components/JagisCTA.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="flex gap-4 items-start border border-green-100 rounded bg-green-50 p-4">
<span class="bg-white px-2 rounded-lg border border-green-100">
<img src="/images/jagis.svg" alt="Logo de jagis.beta.gouv.fr" width="100rem" />
<img src="/images/jagis.svg" alt="Logo de jagis.beta.gouv.fr" width="80rem" />
</span>

<div>
Expand Down
6 changes: 5 additions & 1 deletion src/routes/(front)/(search)/ville/[slug]/CategoryLine.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,11 @@
{:else}
<div
role="row"
class="flex gap-x-2 px-2 sm:(gap-x-4 px-4) items-center justify-between py-2 bg-gray-50 border-b group"
class={'flex gap-x-2 px-2 sm:(gap-x-4 px-4) items-center justify-between py-2 bg-gray-50 group' +
' ' +
(isFirst ? 'rounded-t' : '') +
' ' +
(isLast ? 'rounded-b' : 'border-b')}
>
<div role="cell" class="line-through text-gray-600"><slot /></div>
<div role="cell" class="flex-1 flex flex-col items-end gap-x-2 text-right">
Expand Down

0 comments on commit 5a470ed

Please sign in to comment.