Skip to content

Commit

Permalink
fix: change heading height to min-height
Browse files Browse the repository at this point in the history
  • Loading branch information
martapanc committed Oct 21, 2023
1 parent 8295eaf commit e6e6ace
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/atoms/headings/Heading.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const Heading = ({ title }: HeadingProps) => {
const { t } = useTranslation();

return (
<h1 className='heading drop-shadow-lg mb-3 text-5xl font-bold'>
<h1 className='heading drop-shadow-lg mb-4 text-5xl font-bold'>
{t(title)}
</h1>
);
Expand Down
2 changes: 1 addition & 1 deletion src/components/atoms/headings/headings.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.heading {
height: 52px;
min-height: 52px;
background-image: radial-gradient(
circle at 10% 20%,
rgb(59, 149, 237) 0%,
Expand Down

0 comments on commit e6e6ace

Please sign in to comment.