Skip to content

Commit

Permalink
feat(connection): update tag badges layout
Browse files Browse the repository at this point in the history
  • Loading branch information
kunish committed Sep 16, 2023
1 parent 0015468 commit b7a0407
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/ConnectionsSettingsModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -207,12 +207,12 @@ export const ConnectionsSettingsModal = (props: {
<div class="flex flex-col gap-4">
<TagClientSourceIPWithNameForm />

<div class="flex flex-wrap gap-2">
<div class="grid grid-cols-2 gap-2">
<For each={clientSourceIPTags()}>
{({ tagName, sourceIP }) => (
<div class="badge badge-primary badge-lg items-center gap-2">
<span>
{tagName} - {sourceIP}
<div class="badge badge-primary w-full items-center gap-2 py-4">
<span class="truncate">
{tagName}({sourceIP})
</span>

<Button
Expand Down

0 comments on commit b7a0407

Please sign in to comment.