We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fc61ec commit 4ba6f44Copy full SHA for 4ba6f44
2 files changed
apps/about/static/about/css/allies.scss
@@ -1,8 +1,9 @@
1
.ally-block {
2
margin-bottom: 2rem;
3
- img {
+ img.logo {
4
width: 5rem;
5
vertical-align: middle;
6
+ margin-right: 1rem;
7
}
8
p.description {
9
i.quote {
apps/about/templates/about/allies.html
@@ -17,7 +17,7 @@ <h1>Aliados</h1>
17
{% for ally in allies %}
18
<div class="ally-block" id="{{ ally.name|slugify }}">
19
<h2 class="dyn-anchor-heading">
20
- <img src="{{ ally.logo.url }}"> {{ ally.name }}
+ <img class="logo" src="{{ ally.logo.url }}"> {{ ally.name }}
21
<a class="dyn-anchor-link" href="#{{ ally.name|slugify }}"><i class="fas fa-link"></i></a>
22
</h2>
23
<p class="description"><i class="fas fa-quote-left quote"></i> {{ ally.description }} <i class="fas fa-quote-right quote"></i></p>
0 commit comments