-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobals.css
45 lines (31 loc) · 907 Bytes
/
globals.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
@tailwind base;
@tailwind components;
@tailwind utilities;
html {
scroll-behavior: smooth;
font-family: 'SF Pro Display', 'SF Pro Icons', 'Helvetica Neue', 'Helvetica',
'Arial', sans-serif;
}
@layer base {
body {
@apply bg-white dark:bg-[#0c0c0c] text-black tracking-wide
}
h1, h2, h3, h4, h5, h6 {
@apply font-bold
}
li {
@apply cursor-pointer
}
.menu {
@apply md:hidden ;
}
.menu .MuiPaper-root {
@apply bg-white/20 backdrop-blur-2xl rounded-b-xl rounded-t-none !text-black dark:!bg-transparent !shadow-none !absolute !top-[63px] !-ml-[18px] !w-fit;
}
.menu .MuiList-root {
@apply !p-0 ;
}
.menu .MuiMenuItem-root {
@apply !text-center !items-center !justify-start !py-[9px] !text-[14px] bg-transparent !text-black dark:!text-white hover:!bg-gray-100 dark:hover:!bg-[#222222] transition-all duration-200 ease-in-out;
}
}