Skip to content

Commit ab5660b

Browse files
committed
Hide contact buttons for printing
1 parent 962a139 commit ab5660b

File tree

1 file changed

+15
-13
lines changed

1 file changed

+15
-13
lines changed

src/overrides/Pagination.astro

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,18 @@ import { CardGrid } from '@astrojs/starlight/components';
33
import IconLinkCard from '@src/components/IconLinkCard.astro';
44
---
55

6-
<CardGrid>
7-
<IconLinkCard
8-
icon="discord"
9-
title="Discord"
10-
description="Ask questions and chat live with the community."
11-
href="https://discord.com/invite/mtasa" />
12-
13-
<IconLinkCard
14-
icon="gitter"
15-
title="Forum"
16-
description="Engage with the community in the old-fashioned way."
17-
href="https://forum.multitheftauto.com/forum/82-support-for-mtasa-1x/" />
18-
</CardGrid>
6+
<div class="print:hidden">
7+
<CardGrid>
8+
<IconLinkCard
9+
icon="discord"
10+
title="Discord"
11+
description="Ask questions and chat live with the community."
12+
href="https://discord.com/invite/mtasa" />
13+
14+
<IconLinkCard
15+
icon="gitter"
16+
title="Forum"
17+
description="Engage with the community in the old-fashioned way."
18+
href="https://forum.multitheftauto.com/forum/82-support-for-mtasa-1x/" />
19+
</CardGrid>
20+
</div>

0 commit comments

Comments
 (0)