Skip to content

Commit

Permalink
💄 Fix the gradient on featured works on homepage
Browse files Browse the repository at this point in the history
Brings in a fix from this Hyrax to fix the graient styling in the
handles of places like the featured works on the homepage.

Ref:
  - samvera/hyrax@fa1bffc
  • Loading branch information
kirkkwang committed Aug 15, 2024
1 parent ec8fef3 commit 5a86a8f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app/assets/stylesheets/hyku.scss
Original file line number Diff line number Diff line change
Expand Up @@ -474,8 +474,9 @@ body.public-facing {
border: 1px solid #aaa;
background: #ddd;
background: -webkit-linear-gradient(top, #ddd 0%, #bbb 100%);
background: -moz-linear-gradient(top, #ddd 0%, #bbb 100%);
background: linear-gradient(top, #ddd 0%, #bbb 100%);
background: -moz-linear-gradient(top, #ddd 0%, #bbb 100%);
background: -o-linear-gradient(to bottom, #ddd 0%, #bbb 100%);
background: linear-gradient(to bottom, #ddd 0%, #bbb 100%);
border-top-right-radius: 0;
border-bottom-right-radius: 0;
z-index: 1;
Expand Down

0 comments on commit 5a86a8f

Please sign in to comment.