diff options
Diffstat (limited to 'apps/website/src/styles/global.css')
-rw-r--r-- | apps/website/src/styles/global.css | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/apps/website/src/styles/global.css b/apps/website/src/styles/global.css index 6520592..79904b7 100644 --- a/apps/website/src/styles/global.css +++ b/apps/website/src/styles/global.css @@ -8,4 +8,17 @@ :focus-visible { @apply outline-none ring ring-blue-500; } + + /* Has to be split because css parser moment */ + ::-moz-selection { + @apply bg-blue-500/20; + } + + ::selection { + @apply bg-blue-500/20; + } + + html, body { + @apply text-[14px] md:text-[16px]; + } } |