Fix CSS variable name typo.

my-merge-progressivo1
Fabio Caccamo 2022-08-25 11:58:54 +02:00
parent b90ed72ef6
commit 53e9b3f9f7
2 changed files with 6 additions and 6 deletions

View File

@ -127,8 +127,8 @@
.admin-interface #branding h1 img.logo,
.admin-interface.login #header #branding h1 img.logo {
max-width: var(--admin-interface-log-max-width);
max-height: var(--admin-interface-log-max-height);
max-width: var(--admin-interface-logo-max-width);
max-height: var(--admin-interface-logo-max-height);
}
.admin-interface #header #user-tools a {

View File

@ -44,15 +44,15 @@
{% endif %}
{% if theme.logo_max_width > 0 %}
--admin-interface-log-max-width: min({{ theme.logo_max_width }}px, 100%);
--admin-interface-logo-max-width: min({{ theme.logo_max_width }}px, 100%);
{% else %}
--admin-interface-log-max-width: 100%;
--admin-interface-logo-max-width: 100%;
{% endif %}
{% if theme.logo_max_height > 0 %}
--admin-interface-log-max-height: {{ theme.logo_max_height }}px;
--admin-interface-logo-max-height: {{ theme.logo_max_height }}px;
{% else %}
--admin-interface-log-max-height: unset;
--admin-interface-logo-max-height: unset;
{% endif %}
{% if theme.related_modal_rounded_corners %}