Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: alignment and temporary grayscale #357

Merged
merged 1 commit into from
Jul 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions src/css/_04-content.scss
Original file line number Diff line number Diff line change
Expand Up @@ -146,12 +146,12 @@ article.type-people .entry-content .wp-block-advanced-columns-column__inner figu
* Jetpack Related Posts
*/

#jp-relatedposts {
.entry #jp-relatedposts {
width: 1100px;
max-width: 1100px;
border-top: 2px dotted var(--color-brandGrey);
margin-top: 5rem !important;
margin: auto;
margin: 5rem auto 1rem auto;
padding-top: .5rem;
}

.entry #jp-relatedposts h3.jp-relatedposts-headline::before {
Expand Down Expand Up @@ -181,6 +181,11 @@ article.type-people .entry-content .wp-block-advanced-columns-column__inner figu
font-family: var(--font-sans);
}

#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post img.jp-relatedposts-post-img {
filter: grayscale(1);
mix-blend-mode: multiply;
}


/*
* Block Color Palette Colors
Expand Down
Loading