Skip to content

Commit

Permalink
Merge pull request #98 from springload/fix/more-misc-fed-tweaks
Browse files Browse the repository at this point in the history
More misc minor fed tweaks
  • Loading branch information
liamjohnston authored Jun 13, 2024
2 parents f488bda + 09ecc7a commit fee6186
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions cdhweb/static_src/global/components/tag.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
}

.tag {
text-align: center;
font-size: px2rem(13);
line-height: 1;
font-weight: bold;
Expand Down
2 changes: 1 addition & 1 deletion cdhweb/static_src/global/components/tiles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
row-gap: 40px;

@include sm {
grid-template-columns: repeat(auto-fit, minmax(px2rem(265), 1fr));
grid-template-columns: repeat(auto-fit, minmax(px2rem(280), 1fr));
column-gap: 32px;
}
}
Expand Down
2 changes: 1 addition & 1 deletion templates/includes/event_hero.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ <h2 class="sr-only">Speakers</h2>
</div>
{% endif %}

{% if self.tags %}
{% if self.tags.all %}
<div class="tag-list">
{% for tag in self.tags.all %}
<div class="tag">{{ tag }}</div>
Expand Down
2 changes: 1 addition & 1 deletion templates/includes/project_hero.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ <h1>{{ self.title}}</h1>
{{ self.description | richtext }}
{% endif %}

{% if self.tags %}
{% if self.tags.all %}
<div class="tag-list">
{% for tag in self.tags.all %}
<div class="tag">{{ tag }}</div>
Expand Down

0 comments on commit fee6186

Please sign in to comment.