Skip to content

Commit e5fc791

Browse files
authored
fix: leaderboard text size (#1395)
Signed-off-by: Efren Lim <[email protected]>
1 parent 414716a commit e5fc791

File tree

1 file changed

+1
-1
lines changed
  • frontend/app/components/modules/leaderboards/components/sections

1 file changed

+1
-1
lines changed

frontend/app/components/modules/leaderboards/components/sections/table-row.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ SPDX-License-Identifier: MIT
2727
<p
2828
:title="item.name"
2929
class="text-base leading-5 font-medium text-neutral-900 overflow-hidden text-ellipsis whitespace-nowrap max-w-full"
30-
:class="{ 'hover:underline text-sm cursor-pointer': isSmall && !!item.slug }"
30+
:class="{ 'hover:underline cursor-pointer': isSmall && !!item.slug, 'text-sm': isSmall }"
3131
@click="navigateToProject(item.slug)"
3232
>
3333
{{ item.name }}

0 commit comments

Comments
 (0)