fix: wrong default banner opacity and height
This commit is contained in:
parent
941fd3c248
commit
c593085877
1 changed files with 7 additions and 1 deletions
|
@ -16,19 +16,25 @@
|
|||
{%- include functions.html func='get_banner' -%}
|
||||
|
||||
{% if banner_image %}
|
||||
{% if banner_height %}
|
||||
<style>
|
||||
html .page-banner {
|
||||
height: {{ banner_height }};
|
||||
}
|
||||
</style>
|
||||
{% endif %}
|
||||
|
||||
{% if banner_opacity %}
|
||||
<style>
|
||||
html .page-banner .page-banner-img > *:first-child {
|
||||
opacity: {{ banner_opacity }};
|
||||
}
|
||||
|
||||
html[data-theme="dark"] .page-banner .page-banner-img > *:first-child {
|
||||
opacity: {{ banner_opacity | times: 0.6 }};
|
||||
opacity: {{ banner_opacity | times: 0.718 }};
|
||||
}
|
||||
</style>
|
||||
{% endif %}
|
||||
<section class="page-banner">
|
||||
<div class="page-banner-img">
|
||||
<div style="background-image: url({{ banner_image }})"></div>
|
||||
|
|
Loading…
Reference in a new issue