Skip to content

Commit 1101bb9

Browse files
committed
fix: inline action buttons with gap, add padding below dialog header
1 parent 95df124 commit 1101bb9

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

apps/webapp/app/components/admin/FeatureFlagsDialog.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ export function FeatureFlagsDialog({
124124
</DialogDescription>
125125
</DialogHeader>
126126

127-
<div className="max-h-[60vh] overflow-y-auto">
127+
<div className="max-h-[60vh] overflow-y-auto pt-3">
128128
{isLoading ? (
129129
<div className="py-8 text-center text-sm text-text-dimmed">Loading flags...</div>
130130
) : data ? (

apps/webapp/app/routes/admin.orgs.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,16 +125,15 @@ export default function AdminDashboardRoute() {
125125
<TableCell>{org.v3Enabled ? "✅" : ""}</TableCell>
126126
<TableCell>{org.deletedAt ? "☠️" : ""}</TableCell>
127127
<TableCell isSticky={true}>
128+
<div className="flex items-center gap-2">
128129
<Button
129130
variant="tertiary/small"
130131
onClick={() => openFlagsDialog(org.id, org.title)}
131-
className="mr-2"
132132
>
133133
Flags
134134
</Button>
135135
<LinkButton
136136
to={`/@/orgs/${org.slug}`}
137-
className="mr-2"
138137
variant="tertiary/small"
139138
shortcut={
140139
organizations.length === 1
@@ -144,6 +143,7 @@ export default function AdminDashboardRoute() {
144143
>
145144
Impersonate
146145
</LinkButton>
146+
</div>
147147
</TableCell>
148148
</TableRow>
149149
);

0 commit comments

Comments
 (0)