From 11fd60da81dd78f5fb99bc061078e1b13bbe082a Mon Sep 17 00:00:00 2001 From: LynithDev <61880709+LynithDev@users.noreply.github.com> Date: Mon, 16 Oct 2023 21:23:42 +0200 Subject: Button + Section component, new Icon component + new colors --- apps/website/src/styles/global.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'apps/website/src/styles') 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]; + } } -- cgit