Skip to content

Commit

Permalink
Fix design
Browse files Browse the repository at this point in the history
  • Loading branch information
thomtrp committed Dec 20, 2024
1 parent 673d021 commit b9b4b90
Showing 1 changed file with 5 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,10 @@ const StyledEditableTitleContainer = styled.div`
const StyledEditableTitlePrefix = styled.div`
color: ${({ theme }) => theme.font.color.tertiary};
line-height: 24px;
padding: 3px 0;
`;

const StyledEditableTitleSeparator = styled.div`
color: ${({ theme }) => theme.font.color.tertiary};
line-height: 24px;
padding: 3px;
display: flex;
flex-direction: row;
padding: ${({ theme }) => theme.spacing(0.75)};
gap: ${({ theme }) => theme.spacing(1)};
`;

export const RecordEditableName = ({
Expand Down Expand Up @@ -78,8 +75,8 @@ export const RecordEditableName = ({
<StyledEditableTitleContainer>
<StyledEditableTitlePrefix>
{capitalize(objectLabelPlural)}
<span>{' / '}</span>
</StyledEditableTitlePrefix>
<StyledEditableTitleSeparator>{' / '}</StyledEditableTitleSeparator>
{isRenaming ? (
<NavigationDrawerInput
value={recordName}
Expand Down

0 comments on commit b9b4b90

Please sign in to comment.