Skip to content

Commit

Permalink
set event intro text to regular size
Browse files Browse the repository at this point in the history
  • Loading branch information
Moggach committed Jul 9, 2024
1 parent 06514bd commit 52fc804
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/templates/app/blocks/event_list_and_map_block.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{% map in_place=False center="[-2.5, 53.6]" zoom=5.5 style="mapbox://styles/commonknowledge/cl7cnn4d6004a14nzcmvf0k01" %}
<article class="px-4 my-3 md:tw-hidden">
<h1 class='tw-text-4xl'>{{ value.title }}</h1>
<div class='tw-text-2xl'>{{ value.intro|richtext }}</div>
<p>{{ value.intro|richtext }}</p>
{% if not user.is_member %}
{% bootstrap_button href="/join" content="Join LBC and come along" %}
{% endif %}
Expand All @@ -20,7 +20,7 @@ <h1 class='tw-text-4xl'>{{ value.title }}</h1>
data-map-target="config">
<article class="px-4 my-3 tw-hidden md:tw-block">
<h1 class='tw-text-4xl'>{{ value.title }}</h1>
<div class='tw-text-2xl'>{{ value.intro|richtext }}</div>
<p>{{ value.intro|richtext }}</p>
{% if not user.is_member %}
{% bootstrap_button href="/join" content="Join LBC and come along" %}
{% endif %}
Expand Down
4 changes: 2 additions & 2 deletions app/templates/app/includes/event_list_and_map.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{% map in_place=False center="[-2.5, 53.6]" zoom=5.5 style="mapbox://styles/commonknowledge/cl7cnn4d6004a14nzcmvf0k01" %}
<article class="px-4 my-3 md:tw-hidden">
<h1 class='tw-text-4xl'>{{ title }}</h1>
<div class='tw-text-2xl'>{{ intro|richtext }}</div>
<p>{{ intro|richtext }}</p>
{% if not user.is_member %}
{% bootstrap_button href="/join" content="Join LBC and come along" %}
{% endif %}
Expand All @@ -25,7 +25,7 @@ <h1 class='tw-text-4xl'>{{ title }}</h1>
data-list-filter-option-passive-classes-value="tw-bg-slate-300">
<article class="px-4 my-3 tw-hidden md:tw-block">
<h1 class='tw-text-4xl'>{{ title }}</h1>
<div class='tw-text-2xl'>{{ intro|richtext }}</div>
<p>{{ intro|richtext }}</p>
{% if not user.is_member %}
{% bootstrap_button href="/join" content="Join LBC and come along" %}
{% endif %}
Expand Down

0 comments on commit 52fc804

Please sign in to comment.