forked from transitive-bullshit/nextjs-notion-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobal.css
62 lines (53 loc) · 1.12 KB
/
global.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
* {
box-sizing: border-box;
}
a {
color: inherit;
text-decoration: none;
}
body,
html {
padding: 0;
margin: 0;
}
body {
--notion-font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans',
'Droid Sans', 'Helvetica Neue', 'Noto Sans', sans-serif;
font-family: var(--notion-font);
overflow-x: hidden;
}
.static-tweet blockquote {
margin: 0;
margin-block-start: 0;
margin-block-end: 0;
margin-inline-start: 0;
margin-inline-end: 0;
}
.static-tweet-emoji {
height: 1.2em !important;
width: 1.2em !important;
}
.searchInput {
color: var(--fg-color);
caret-color: var(--fg-color);
}
::-webkit-scrollbar
{
width: 5px;
height: 5px;
background-color: #F5F5F5;
background-color: var(--bg-color-1);
}
::-webkit-scrollbar-thumb
{
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
background-color: #555;
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
background-color: var(--fg-color-1);
}
::-webkit-scrollbar-track {
background-color: var(--bg-color);
}