Skip to content
This repository was archived by the owner on Oct 15, 2025. It is now read-only.

Commit def0e92

Browse files
committed
fix(overview): Bad RWD on small devices
1 parent eda68d6 commit def0e92

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

assets/styles/app.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ ul.credit {
389389
"historic-statistics" auto
390390
"leaderboard" auto;
391391

392-
@media (min-width: 768px) {
392+
@media (min-width: 1440px) {
393393
grid-template:
394394
"hello-text hello-text hello-text hello-text" auto
395395
"weekly-metrics weekly-metrics leaderboard leaderboard" 1fr

templates/overview/cards/leaderboard.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<tbody>
1313
{% for item in leaderboard %}
1414
<tr>
15-
<th scope="row">{{ item.user.name|u.truncate(24, '') }}</th>
15+
<th scope="row" class="text-truncate">{{ item.user.name|u.truncate(24, '') }}</th>
1616
<td>{{ item.count }}</td>
1717
</tr>
1818
{% endfor %}

0 commit comments

Comments
 (0)