Skip to content

Commit

Permalink
fix: remove justify-center
Browse files Browse the repository at this point in the history
  • Loading branch information
RemiBonnet committed Dec 30, 2024
1 parent ed9652f commit 93a336e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1163,7 +1163,7 @@ exports[`ServiceList should match snapshot 1`] = `
class="flex min-w-0 shrink flex-col truncate pr-2"
>
<span
class="flex items-center justify-center gap-1.5"
class="flex items-center gap-1.5"
>
<a
class="cursor-pointer transition duration-100 font-medium items-center gap-1 text-current hover:brightness-75 text-sm hover:underline inline max-w-max truncate"
Expand Down Expand Up @@ -1586,7 +1586,7 @@ exports[`ServiceList should match snapshot 1`] = `
class="flex min-w-0 shrink flex-col truncate pr-2"
>
<span
class="flex items-center justify-center gap-1.5"
class="flex items-center gap-1.5"
>
<a
class="cursor-pointer transition duration-100 font-medium items-center gap-1 text-current hover:brightness-75 text-sm hover:underline inline max-w-max truncate"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ function ServiceNameCell({
.with({ serviceType: 'DATABASE' }, (db) => {
return (
<span className="flex min-w-0 shrink flex-col truncate pr-2">
<span className="flex items-center justify-center gap-1.5">
<span className="flex items-center gap-1.5">
<Tooltip content={service.name}>
<Link
className="inline max-w-max truncate"
Expand Down Expand Up @@ -182,7 +182,7 @@ function ServiceNameCell({

return (
<span className="flex min-w-0 shrink flex-col truncate pr-2">
<span className="flex items-center justify-center gap-1.5">
<span className="flex items-center gap-1.5">
<Tooltip content={service.name}>
<Link
className="inline max-w-max truncate"
Expand Down

0 comments on commit 93a336e

Please sign in to comment.