-
Notifications
You must be signed in to change notification settings - Fork 528
Expand file tree
/
Copy pathindex.css
More file actions
70 lines (58 loc) · 1.42 KB
/
index.css
File metadata and controls
70 lines (58 loc) · 1.42 KB
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
63
64
65
66
67
68
69
70
@import './reset.css';
@import "../node_modules/tachyons";
/* They forgot to include word break: https://github.com/tachyons-css/tachyons/issues/563 */
@import "../node_modules/tachyons/src/_word-break.css";
@import "../node_modules/ipfs-css";
body {
overflow-y: scroll;
}
.placeholder-light::placeholder{
color: #CAD3D8;
}
.bg-near-white {
background-color: #fbfbfb;
}
html, body, #root {
min-height: 100%;
}
.appOverlay {
width: 100%;
}
@media only screen and (min-width: 60em) {
.appOverlay {
width: calc(100% - 148px)
}
}
/* =========================
React Joyride overrides
========================= */
.react-joyride__tooltip button {
font-size: 14px !important;
font-family: 'Montserrat';
}
/* =========================
macOS Electron Draggable Region Fix
========================= */
/* Fix: Interactive elements in draggable regions lose focus on macOS.
* Sets no-drag to exclude inputs, buttons, etc. from parent drag regions.
* See: https://github.com/ipfs/ipfs-desktop/issues/2943
*/
input:not([type="hidden"]),
textarea,
select,
button,
[role="button"],
[contenteditable="true"] {
-webkit-app-region: no-drag !important;
app-region: no-drag !important;
pointer-events: auto;
}
/* =========================
Custom tachyons classes
========================= */
.hover-o-100:hover, .hover-o-100:focus {
opacity: 1;
}
.hover-o-90:hover, .hover-o-90:focus {
opacity: 0.9;
}