Skip to content

Commit

Permalink
Changed the height of the images in the card component so that they w…
Browse files Browse the repository at this point in the history
…ould be consistent; Slight scss styling fixes
  • Loading branch information
joshwingreene committed Mar 15, 2024
1 parent 9f0b661 commit bdcaa6f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion quartz/components/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default ((userOpts?: Options) => {
border-bottom-right-radius: 0;
display: flex;
width: 100%;
height: 150px;
height: 130px;
object-fit: cover;
margin: 0;
}
Expand Down
2 changes: 1 addition & 1 deletion quartz/components/styles/garden.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
width: 150px;
height: 150px;
border-radius: 50%;
border: 8px solid var(--gray);
border: 8px solid var(--secondary);
margin: 1rem 0;
}
}
Expand Down
2 changes: 1 addition & 1 deletion quartz/components/styles/landing.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
width: 100px;
height: 100px;
border-radius: 50%;
border: 8px solid var(--gray);
border: 8px solid var(--secondary);
margin: 0;
}
}
Expand Down
6 changes: 3 additions & 3 deletions quartz/components/styles/navbar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ nav.navbar {
transition: all 0.35s ease;

&:hover {
color: --var(secondary);
color: var(--secondary);
}
}

Expand Down Expand Up @@ -163,12 +163,12 @@ nav.navbar {
font-size: 1rem;
font-weight: 500;
line-height: inherit;
color: --var(dark);
color: var(--dark);
text-rendering: optimizeLegibility;
transition: all 0.35s ease;

&:hover {
color: --var(secondary);
color: var(--secondary);
}
}

Expand Down

0 comments on commit bdcaa6f

Please sign in to comment.