diff --git a/templates/blocks/block_elements/be_button.html b/templates/blocks/block_elements/be_button.html index d26578c..7cd0fb3 100644 --- a/templates/blocks/block_elements/be_button.html +++ b/templates/blocks/block_elements/be_button.html @@ -28,8 +28,22 @@ {% endif %}; width: 100%; } + .{{ name_w }}_{{ widget.id }}_align_btn.desctop{ + display: block; + } + .{{ name_w }}_{{ widget.id }}_align_btn.mobile{ + display: none; + } + @media (max-width: 800px) { + .{{ name_w }}_{{ widget.id }}_align_btn.desctop{ + display: none; + } + .{{ name_w }}_{{ widget.id }}_align_btn.mobile{ + display: block; + } + } -
+
{{ widget.but_title }} diff --git a/templates/widgets/w_one_present_aerBim.html b/templates/widgets/w_one_present_aerBim.html index a864a8c..423555a 100644 --- a/templates/widgets/w_one_present_aerBim.html +++ b/templates/widgets/w_one_present_aerBim.html @@ -25,4 +25,7 @@ {% endif %}
{% endif %} + {% with name_w='presentAerBim' mobile='mobile' %} + {% include 'blocks/block_elements/be_button.html' %} + {% endwith %}
\ No newline at end of file