From 6d17d0b954924464c1cdfaabfa23280309c977b1 Mon Sep 17 00:00:00 2001 From: Gnarwhal Date: Mon, 23 Sep 2024 19:16:08 +0000 Subject: [PATCH] Make copy text monospace --- src/app/[...file]/components/copy.css.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/app/[...file]/components/copy.css.ts b/src/app/[...file]/components/copy.css.ts index c6d8f84..884b659 100644 --- a/src/app/[...file]/components/copy.css.ts +++ b/src/app/[...file]/components/copy.css.ts @@ -79,7 +79,9 @@ export const copied_image_light = style([copy_image, { export const copy_text = style({ - margin: 0, + margin: 0, marginLeft: '1em', - width: 'max-content', + width: 'max-content', + fontFamily: 'monospace', + fontSize: '1.2em', });