forked from devhubapp/devhub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
61 lines (49 loc) · 954 Bytes
/
index.css
File metadata and controls
61 lines (49 loc) · 954 Bytes
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
::-webkit-scrollbar {
width: 0px;
height: 0px;
background-color: transparent;
}
::-webkit-scrollbar-thumb
{
background-color: transparent;
}
*:focus {
outline-color: #49d3b4;
}
*[tabIndex^="-1"]:focus {
outline: none;
}
html, body, #root, #root > div {
width: 100%;
height: 100%;
overflow: hidden;
}
html {
scroll-behavior: smooth;
}
body {
background-color: #1F2229;
cursor: default;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
a:hover, a:hover > * {
cursor: pointer;
}
input:focus {
outline: none !important;
}
[data-touchable] {
cursor: default;
}
[data-touchable="true"][data-touchable-onpress="true"] {
cursor: pointer;
}
[data-touchable="true"][data-touchable-disabled="true"] {
cursor: not-allowed;
}
/* https://github.com/necolas/react-native-web/issues/1299 */
[data-paging-enabled-fix] > div > div > div {
height: 100%;
}