From 8ec4c959846a46c0ccde8e6f9b305ef343b61be0 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', });