Skip to content

Commit 0f3907e

Browse files
committed
fix: improve outline display
1 parent 61683ca commit 0f3907e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

site/src/modules/management/OrganizationSidebarView.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,8 @@ const OrganizationsSettingsNavigation: FC<
122122
<Link
123123
key={organization.id}
124124
to={urlForSubpage(organization.name)}
125-
className="no-underline visited:text-content-secondary text-content-secondary"
125+
// Setting width to 215px so that outline is visible
126+
className="w-[215px] ml-1 no-underline visited:text-content-secondary text-content-secondary"
126127
>
127128
<CommandItem
128129
value={organization.name}
@@ -151,7 +152,7 @@ const OrganizationsSettingsNavigation: FC<
151152
<Button variant="subtle" className="w-full h-8">
152153
<a
153154
href="/organizations/new"
154-
className="flex items-center gap-1 no-underline hover:text-content-primary visited:text-content-secondary"
155+
className="flex items-center gap-1 no-underline text-content-secondary hover:text-content-primary visited:text-content-secondary"
155156
>
156157
<Plus /> Create Organization
157158
</a>

0 commit comments

Comments
 (0)