Skip to content

Commit 17738b1

Browse files
committed
chore: improve styles
1 parent 7bea0b3 commit 17738b1

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

site/src/modules/management/DeploymentSettingsLayout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ const DeploymentSettingsLayout: FC = () => {
3939
</BreadcrumbList>
4040
</Breadcrumb>
4141
<hr className="h-px border-none bg-border" />
42-
<div className="px-6 max-w-screen-2xl">
43-
<div className="flex flex-row gap-12 py-10">
42+
<div className="px-10 max-w-screen-2xl">
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 && (
@@ -116,13 +116,13 @@ const OrganizationsSettingsNavigation: FC<
116116
)}
117117
{activeOrganization?.display_name || activeOrganization?.name}
118118
</div>
119-
<ChevronDown className="ml-2 h-4 w-4 shrink-0 opacity-50" />
119+
<ChevronDown />
120120
</Button>
121121
</PopoverTrigger>
122122
<PopoverContent align="start" className="w-60">
123123
<Command>
124124
<CommandList>
125-
<CommandGroup>
125+
<CommandGroup className="pb-2">
126126
{organizations.map((organization) => (
127127
<Link
128128
key={organization.id}
@@ -146,8 +146,8 @@ const OrganizationsSettingsNavigation: FC<
146146
))}
147147
{permissions.createOrganization && (
148148
<>
149-
<hr className="h-px border-none bg-border" />
150-
<Button variant="subtle" className="w-full">
149+
<hr className="h-px my-2 border-none bg-border -mx-2" />
150+
<Button variant="subtle" className="w-full h-8">
151151
<a
152152
href="/organizations/new"
153153
className="flex items-center gap-1 no-underline hover:text-content-primary visited:text-content-secondary"

0 commit comments

Comments
 (0)