Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/components/ControlPlanes/ControlPlaneCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,10 @@ export function ControlPlaneCard({

return (
<>
<Card key={`${name}--${namespace}`}>
<Card
key={`${name}--${namespace}`}
style={{ margin: '12px 12px 12px 0' }}
>
<div style={{ padding: '20px' }}>
<FlexBox direction="Column">
<FlexBox direction="Row" justifyContent="SpaceBetween">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,14 @@ export function ControlPlaneListWorkspaceGridTile({
>
<Panel
headerLevel="H2"
style={{ margin: '12px 12px 12px 0' }}
collapsed={controlplanes?.length === 0}
header={
<div
style={{
width: '100%',
display: 'grid',
gridTemplateColumns: '1fr 1fr 1fr auto',
gridTemplateColumns: '0.3fr 0.24fr auto 0.05fr',
gap: '1rem',
alignItems: 'center',
}}
Expand Down
3 changes: 2 additions & 1 deletion src/components/ControlPlanes/List/MembersAvatarView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,10 @@ export function MembersAvatarView({ members, project, workspace }: Props) {
}

return (
<div style={{ maxWidth: '300px' }}>
<div style={{ display: 'flex', justifyContent: 'flex-end' }}>
<AvatarGroup
ref={openerRef}
style={{ maxWidth: '200px' }}
type={AvatarGroupType.Group}
onClick={handleOnClick}
>
Expand Down