From f72eb456e82af3285b65dc4dd27e959f6f5db92f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fernando=20Lo=CC=81pez=20Guevara?= Date: Mon, 18 Mar 2024 09:42:25 -0300 Subject: [PATCH] feature: make scrollbar nicer --- apps/desktop2/src/app.css | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/apps/desktop2/src/app.css b/apps/desktop2/src/app.css index 821c7fab..0ad09a56 100644 --- a/apps/desktop2/src/app.css +++ b/apps/desktop2/src/app.css @@ -1,6 +1,18 @@ @tailwind base; -@tailwind components; @tailwind utilities; +@tailwind components; + +*::-webkit-scrollbar { + @apply w-[5px]; +} + +*::-webkit-scrollbar-track { + @apply bg-white dark:bg-black; +} + +*::-webkit-scrollbar-thumb { + @apply bg-black dark:bg-white rounded; +} html { font-size: 14px;