Skip to content

Commit

Permalink
speaker view with no filter
Browse files Browse the repository at this point in the history
  • Loading branch information
libargutxi committed Sep 29, 2023
1 parent 1157e9e commit 85b30c8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const Person = ({ content }) => {
<Container className="person-view">
<Grid columns={2} stackable>
<Grid.Column width={4} className="speaker-image-wrapper">
<div className="speakers-preview-image">
<div className="speakers-preview-image no-filter">
{content.image ? (
<img
src={flattenToAppURL(content.image.scales.preview.download)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,14 @@
}
}
}

.speakers-preview-image.no-filter {
&::before {
content: none;
}

img {
filter: none;
mix-blend-mode: normal;
}
}

0 comments on commit 85b30c8

Please sign in to comment.