chore: removed scrollbars 59e68639
Steve · 2025-10-20 11:07 1 file(s) · +14 −0
src/styles/global.css +14 −0
43 43
	html body {
44 44
		@apply mx-auto flex h-full max-w-3xl flex-col bg-[#121113] px-8 pt-16 font-sans text-sm font-normal text-textColor antialiased;
45 45
	}
46 +
47 +
  ::-webkit-scrollbar {
48 +
  width: 10px;
49 +
}
50 +
51 +
::-webkit-scrollbar-track {
52 +
  background: #121113; /* Change this to your desired background color */
53 +
}
54 +
55 +
::-webkit-scrollbar-thumb {
56 +
  background: #121113; /* Change this to your desired thumb color */
57 +
  border-radius: 10px
58 +
}
59 +
46 60
}
47 61
@tailwind components;
48 62
@tailwind utilities;