Skip to content

Commit

Permalink
add !important to override inherited background-image css
Browse files Browse the repository at this point in the history
  • Loading branch information
lkeegan committed May 13, 2024
1 parent f3847ae commit 93b5cca
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions jupyter_nbconvert_template/index.html.j2
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
{{ super() }}
<style type="text/css">
#custom-header {
background-image: url("ssc-logo.svg");
background-repeat: no-repeat;
background-size: 36px 36px;
background-position: right 2px top 2px;
background-image: url("ssc-logo.svg") !important;
background-repeat: no-repeat !important;
background-size: auto 100% !important;
background-position: right 10px top 0px !important;
float: left;
height: 40px;
width: 100%;
Expand Down

0 comments on commit 93b5cca

Please sign in to comment.