Skip to content

Commit 2e890b9

Browse files
authored
fix: hide repo stats on small screens (#261)
Signed-off-by: Adam Setch <[email protected]>
1 parent 96f2262 commit 2e890b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/GitHubRepo.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const { forks, stars, latestReleaseName } = await loadRepoStats();
5252
>
5353
<section class="flex flex-row gap-2 items-center">
5454
<Icon name="mdi:github" size={32} class="w-6 sm:w-10" />
55-
<div class="font-light">
55+
<div class="font-light max-sm:hidden">
5656
<div class="text-sm">{siteMetadata.repo.fullName}</div>
5757
<div class="flex flex-row gap-2 text-xs">
5858
<div class="flex flex-row gap-0.5 items-center">

0 commit comments

Comments
 (0)