Skip to content

Commit

Permalink
fix: title bo margin bottom
Browse files Browse the repository at this point in the history
  • Loading branch information
guillobits committed Oct 15, 2024
1 parent 9820f08 commit 84ce62e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions src/components/backoffice/dashboard/Dashboard.styles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ export const StyledDashboardRightColumn = styled.div`

export const StyledDashboardTitleContainer = styled.div`
padding-bottom: 20px;
display: flex;
flex-direction: column;
gap: 20px;
`;

export const StyledDashboardCardContentContainer = styled.div`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const DashboardMessagingConversation = () => {
};

return (
<Card title="Mes derniers messages">
<Card title="Mes derniers messages" centerTitle>
<CardContent>
<ConversationList>
{conversations &&
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const HeaderBackoffice = ({
eachWidths={['expand@m', 'auto@m']}
>
<div>
<h2 className="uk-text-bold">{title}</h2>
<h2 className="uk-text-bold uk-margin-small-bottom">{title}</h2>
<p className="uk-text-lead">{description}</p>
</div>
<div>{children}</div>
Expand Down

0 comments on commit 84ce62e

Please sign in to comment.