css fix for background color
This commit is contained in:
@@ -3,8 +3,11 @@
|
||||
body {
|
||||
{% if background.image %}
|
||||
background-image: url('{{background.image.url}}');
|
||||
{% if not background.repeat %}background-repeat: no-repeat;{% endif %}
|
||||
{% else %}
|
||||
background-color: {{background.color}} !important;
|
||||
{% endif %}
|
||||
{% if not background.repeat %}
|
||||
background-repeat: no-repeat;
|
||||
{% endif %}
|
||||
{% if background.color %}
|
||||
background-color: {{background.color}} !importent;
|
||||
{% endif %}
|
||||
}
|
||||
Reference in New Issue
Block a user