Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
LeMurphant committed Nov 15, 2024
1 parent 9ba592b commit 59ccbb9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/components/Article/article.css
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ article .banner h3 .title {

@media only screen and (max-width: 600px) {
/* Hide the image on mobile */
article .glossary-popup .contents+img {
article .glossary-popup .contents + img {
display: none;
}
}
6 changes: 5 additions & 1 deletion app/components/HowCanIHelp/Base.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ export default function Base({title, current, children, ...props}: BaseProps) {

{children}

<HelpMethods footerSubheader="Once you’re educated, here are some ways to help directly" current={current} {...props} />
<HelpMethods
footerSubheader="Once you’re educated, here are some ways to help directly"
current={current}
{...props}
/>
</div>
</div>
</Page>
Expand Down
4 changes: 2 additions & 2 deletions app/components/HowCanIHelp/howcanihelp.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
margin-top: var(--spacing-104);
}

.link-card .image+div {
.link-card .image + div {
max-width: calc(100% - 105px);
}
}

0 comments on commit 59ccbb9

Please sign in to comment.