From f412e2d1de657076ec4f6b08880e5e4a1bf04f9e Mon Sep 17 00:00:00 2001 From: Xevion Date: Tue, 23 May 2023 22:57:03 -0500 Subject: [PATCH] Prevent whitespace text wrapping on description lists --- src/styles/globals.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/styles/globals.scss b/src/styles/globals.scss index a4f8fc4..2433df8 100644 --- a/src/styles/globals.scss +++ b/src/styles/globals.scss @@ -14,6 +14,10 @@ body { @apply bg-zinc-900 text-white; } +dd, dl { + white-space: nowrap; +} + dl { margin: 0;