Florin Bobiș commited on
Commit
f3d9593
1 Parent(s): 028e2f6

css cleanup

Browse files
Files changed (1) hide show
  1. src/app/globals.css +6 -14
src/app/globals.css CHANGED
@@ -2,22 +2,14 @@
2
  @tailwind components;
3
  @tailwind utilities;
4
 
5
- :root {
6
- --background: #ffffff;
7
- --foreground: #171717;
 
8
  }
9
 
10
- @media (prefers-color-scheme: dark) {
11
- :root {
12
- --background: #0a0a0a;
13
- --foreground: #ededed;
14
- }
15
- }
16
-
17
- body {
18
- color: var(--foreground);
19
- background: var(--background);
20
- font-family: Arial, Helvetica, sans-serif;
21
  }
22
 
23
  @layer utilities {
 
2
  @tailwind components;
3
  @tailwind utilities;
4
 
5
+ *,
6
+ *::before,
7
+ *::after {
8
+ box-sizing: border-box;
9
  }
10
 
11
+ *::-webkit-scrollbar {
12
+ display: none !important;
 
 
 
 
 
 
 
 
 
13
  }
14
 
15
  @layer utilities {