Skip to content

Commit fb1021d

Browse files
committed
chore: improve styles
1 parent 3b4d3d0 commit fb1021d

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

site/src/modules/management/DeploymentSettingsLayout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const DeploymentSettingsLayout: FC = () => {
4040
</Breadcrumb>
4141
<hr className="h-px border-none bg-border" />
4242
<div className="px-10 max-w-screen-2xl">
43-
<div className="flex flex-row gap-12 py-10">
43+
<div className="flex flex-row gap-28 py-10">
4444
<DeploymentSidebar />
4545
<main css={{ flexGrow: 1 }}>
4646
<Suspense fallback={<Loader />}>

site/src/modules/management/OrganizationSidebarLayout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { OrganizationSidebar } from "./OrganizationSidebar";
55

66
const OrganizationSidebarLayout: FC = () => {
77
return (
8-
<div className="flex flex-row gap-12 py-10">
8+
<div className="flex flex-row gap-28 py-10">
99
<OrganizationSidebar />
1010
<main css={{ flexGrow: 1 }}>
1111
<Suspense fallback={<Loader />}>

site/src/modules/management/OrganizationSidebarView.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ const OrganizationsSettingsNavigation: FC<
104104
<Button
105105
variant="outline"
106106
aria-expanded={popoverOpen}
107-
className="w-60 justify-between p-2 h-10"
107+
className="w-60 justify-between p-2 h-11"
108108
>
109109
<div className="flex flex-row gap-2 items-center p-2">
110110
{activeOrganization && (
@@ -117,13 +117,13 @@ const OrganizationsSettingsNavigation: FC<
117117
)}
118118
{activeOrganization?.display_name || activeOrganization?.name}
119119
</div>
120-
<ChevronDown className="ml-2 h-4 w-4 shrink-0 opacity-50" />
120+
<ChevronDown />
121121
</Button>
122122
</PopoverTrigger>
123123
<PopoverContent align="start" className="w-60">
124124
<Command>
125125
<CommandList>
126-
<CommandGroup>
126+
<CommandGroup className="pb-2">
127127
{organizations.map((organization) => (
128128
<Link
129129
key={organization.id}
@@ -148,8 +148,8 @@ const OrganizationsSettingsNavigation: FC<
148148
))}
149149
{permissions.createOrganization && (
150150
<>
151-
<hr className="h-px border-none bg-border" />
152-
<Button variant="subtle" className="w-full">
151+
<hr className="h-px my-2 border-none bg-border -mx-2" />
152+
<Button variant="subtle" className="w-full h-8">
153153
<a
154154
href="/organizations/new"
155155
className="flex items-center gap-1 no-underline hover:text-content-primary visited:text-content-secondary"

0 commit comments

Comments
 (0)