diff options
| author | LynithDev <61880709+LynithDev@users.noreply.github.com> | 2023-10-16 21:23:42 +0200 |
|---|---|---|
| committer | LynithDev <61880709+LynithDev@users.noreply.github.com> | 2023-10-16 21:23:42 +0200 |
| commit | 11fd60da81dd78f5fb99bc061078e1b13bbe082a (patch) | |
| tree | 48c44587ac728b23c1557f770c1661f43cb492d3 /apps/website/src/styles | |
| parent | 33197b013f3c643d6c6dada41470459d2f90b4c0 (diff) | |
| download | Nexus-11fd60da81dd78f5fb99bc061078e1b13bbe082a.tar.gz Nexus-11fd60da81dd78f5fb99bc061078e1b13bbe082a.tar.bz2 Nexus-11fd60da81dd78f5fb99bc061078e1b13bbe082a.zip | |
Button + Section component, new Icon component + new colors
Diffstat (limited to 'apps/website/src/styles')
| -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]; + } } |
