display: none !important;
}
}
+.hide-from-sm {
+ @include mq($from: sm) {
+ display: none !important;
+ }
+}
+.hide-until-sm {
+ @include mq($until: sm) {
+ display: none !important;
+ }
+}
+.fsl-until-sm {
+ @include mq($until: sm) {
+ @include font-size(l);
+ }
+}
<div style="position: relative;" >
{% if tag and not tag|tag_is_excluded or not tag and not is_archive %}
- <a class="banner banner--light banner--sidebar" href="{% url 'event_list_tag' 'tournees' %}" style="background-image:url({% static 'img/services/tours.jpg' %});">
+ <a class="banner banner--light banner--sidebar hide-until-sm" href="{% url 'event_list_tag' 'tournees' %}" style="background-image:url({% static 'img/services/tours.jpg' %});">
<div class="banner__content">
{% include 'agenda/includes/event_linecard.html' %}
{% endfor %}
+ {% if tag and not tag|tag_is_excluded or not tag and not is_archive %}
+ <a class="banner banner--light banner--sidebar hide-from-sm" href="{% url 'event_list_tag' 'tournees' %}" style="background-image:url({% static 'img/services/tours.jpg' %});">
+
+ <div class="banner__content">
+
+ <div class="banner__title fsxxxl">
+ Tournées {{ CURRENT_SEASON_STYLED }}
+ </div>
+
+ </div>
+
+ </a>
+ {% endif %}
+
</div>
</div>