We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8983fbb commit 22d51afCopy full SHA for 22d51af
tbx/project_styleguide/templates/patterns/organisms/footer/footer.html
@@ -56,7 +56,7 @@
56
{% if logo.image.width > logo.image.height %}
57
{% image logo.image max-200x100 format-webp loading="lazy" class="footer__logo" alt=logo.alt_text|default:logo.image.title %}
58
{% else %}
59
- {% image logo.image max-100x100 format-webp loading="lazy" class="footer__logo" alt=logo.alt_text|default:logo.image.title %}
+ {% image logo.image max-100x100 format-webp loading="lazy" class="footer__logo footer__logo--narrow" alt=logo.alt_text|default:logo.image.title %}
60
{% endif %}
61
</a>
62
{% endwith %}
tbx/static_src/sass/components/_footer.scss
@@ -89,6 +89,10 @@
89
@include high-contrast-light-mode() {
90
filter: none;
91
}
92
+
93
+ &--narrow {
94
+ max-width: 70px;
95
+ }
96
97
98
&__company {
0 commit comments