Skip to content

Commit 48d98f5

Browse files
authored
Merge pull request #1689 from erhuve/fix-user-name-centering
fix: center production user names (fixes #1688)
2 parents 26d2787 + 0e354c8 commit 48d98f5

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/styles/app.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -475,6 +475,11 @@ blockquote::before {
475475
min-height: 100px;
476476
}
477477

478+
.user-name {
479+
display: flex;
480+
justify-content: center;
481+
}
482+
478483
.user-container {
479484
min-height: 300px;
480485
}

templates/production/users.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<img src="/static/images/user-logos/{{ u.logo }}" alt="{{ u.logo }}" />
1818
</a>
1919
</div>
20-
<h4 class="f2 fw6">{{ u.name }}</h4>
20+
<h4 class="user-name f2 fw6">{{ u.name }}</h4>
2121
<p>{{{ u.how }}}</p>
2222
</div>
2323
{{/each~}}

0 commit comments

Comments
 (0)