Skip to content

Commit

Permalink
font consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
whunter committed Oct 29, 2024
1 parent 10c9564 commit e61feee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/css/HomePage.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
.home-wrapper #home-site-title-wrapper h1 {
color: white;
font-size: 25px;
font-family: "crimson-text", serif;
font-family: "gineso-condensed", sans-serif;
text-transform: uppercase;
font-weight: 600;
text-shadow: -2px 3px 5px #000000b5;
Expand Down
5 changes: 3 additions & 2 deletions src/pages/home/FeaturedStaticImage/FeaturedStaticImage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,10 @@ export const FeaturedStaticImage: FC<Props> = ({ staticImage, site }) => {
<div id="home-site-title-wrapper">
<h1
style={{
fontFamily: staticImage?.titleFont || "crimson-text, serif",
fontFamily:
staticImage?.titleFont || "gineso-condensed, sans-serif",
textTransform: staticImage?.textStyle || "uppercase",
fontSize: staticImage?.titleSize || "40px",
fontSize: staticImage?.titleSize || "40px"
}}
>
{site?.siteName || ""}
Expand Down

0 comments on commit e61feee

Please sign in to comment.