From 1ff554fefe5a960e544c49fdd47fd1f0963e8ebc Mon Sep 17 00:00:00 2001 From: LynithDev <61880709+LynithDev@users.noreply.github.com> Date: Wed, 27 Dec 2023 18:43:56 +0100 Subject: Pretty much finished the mods page except for images / svgs --- apps/website/src/styles/global.css | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'apps/website/src/styles') diff --git a/apps/website/src/styles/global.css b/apps/website/src/styles/global.css index 340c9e0..1a9f19b 100644 --- a/apps/website/src/styles/global.css +++ b/apps/website/src/styles/global.css @@ -5,6 +5,7 @@ * { font-family: 'Poppins', sans-serif; + -webkit-tap-highlight-color: transparent; } @layer base { @@ -25,6 +26,10 @@ body { @apply text-[14px] md:text-[16px]; } + + a { + -webkit-user-drag: none; + } } /* Codeblocks */ @@ -33,6 +38,7 @@ border-radius: 16px; border: 1px solid rgba(65, 74, 88, 1); width: 100%; + line-height: 18px; } .astro-code code { -- cgit