Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/components/Publications.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ const Publications = () => {
className="background-media"
style={{
backgroundImage: publication.imageSrc.endsWith('.gif')
? `linear-gradient(to bottom, rgba(245, 246, 252, 0), rgba(0, 0, 0, 0.15)), url(${publication.imageSrc})`
? `linear-gradient(to bottom, transparent 0%, transparent 50%, rgba(240, 248, 255, 0.5) 70%, rgba(240, 248, 255, 0.9) 85%, rgba(240, 248, 255, 1.0) 100%), url(${publication.imageSrc})`
: 'none'
}}
>
Expand Down
2 changes: 1 addition & 1 deletion src/styles/publications.scss
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@
.content {
position: relative;
z-index: 2;
background: linear-gradient(to bottom, transparent 0%, transparent 35%, rgba(240, 248, 255, 0.85) 50%, rgba(240, 248, 255, 0.92) 70%, rgba(240, 248, 255, 1.0) 85%);
background: linear-gradient(to bottom, transparent 0%, transparent 30%, rgba(240, 248, 255, 0.2) 40%, rgba(240, 248, 255, 0.7) 50%, rgba(240, 248, 255, 0.95) 60%, rgba(240, 248, 255, 1.0) 65%);
height: 100%;
padding: 120px 20px 25px;
display: flex;
Expand Down