Skip to content

Commit

Permalink
fix(AccessGroups) Added missing gap between project pemissions panels
Browse files Browse the repository at this point in the history
  • Loading branch information
flynput committed Dec 5, 2024
1 parent 17da38f commit 67f7a43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/SettingsPage/AccessGroups/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const AccessGroups = ({ projectName, canCreateOrDelete }: Props) => {
const [selectedAccessGroup, setSelectedAccessGroup] = useState<AccessGroupObject | null>(null)

return (
<main style={{ display: 'flex', flexGrow: 1 }}>
<main style={{ display: 'flex', flexGrow: 1, gap: 'var(--base-gap-large)'}}>
<AccessGroupList
canCreateOrDelete={canCreateOrDelete}
projectName={projectName}
Expand Down

0 comments on commit 67f7a43

Please sign in to comment.