Skip to content

Commit

Permalink
fix(banner): re-added title class on banner title
Browse files Browse the repository at this point in the history
- there is css that styles the title class on tablet or mobile classes
  • Loading branch information
ichim-david committed Jan 16, 2023
1 parent dfe2a1c commit 6d15799
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/Banner/Banner.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ Banner.Content = ({ children, actions }) => {
};

Banner.Title = ({ children }) => {
return <h1 className="documentFirstHeading">{children}</h1>;
return <h1 className="documentFirstHeading title">{children}</h1>;
};
Banner.Subtitle = ({ children }) => <p className="subtitle">{children}</p>;
Banner.Metadata = ({ children }) => <p className="metadata">{children}</p>;
Expand Down

0 comments on commit 6d15799

Please sign in to comment.