-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.css
More file actions
60 lines (53 loc) · 1.46 KB
/
content.css
File metadata and controls
60 lines (53 loc) · 1.46 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
#pr-latest-first-jump-controls {
bottom: max(16px, env(safe-area-inset-bottom));
display: flex;
flex-direction: column;
gap: 8px;
position: fixed;
right: max(16px, env(safe-area-inset-right));
z-index: 90;
}
.pr-latest-first-jump-button {
align-items: center;
background: var(--bgColor-default, var(--color-canvas-default, #ffffff));
border: 1px solid var(--borderColor-default, var(--color-border-default, #d0d7de));
border-radius: 6px;
box-shadow: var(--shadow-resting-small, 0 1px 3px rgba(31, 35, 40, 0.12));
box-sizing: border-box;
color: var(--fgColor-default, var(--color-fg-default, #1f2328));
cursor: pointer;
display: grid;
height: 40px;
justify-items: center;
padding: 0;
width: 40px;
}
.pr-latest-first-jump-button:hover {
background: var(--bgColor-muted, var(--color-canvas-subtle, #f6f8fa));
}
.pr-latest-first-jump-button:active {
transform: translateY(1px);
}
.pr-latest-first-jump-button:focus-visible {
outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg, #0969da));
outline-offset: 2px;
}
.pr-latest-first-jump-button svg {
fill: none;
height: 19px;
stroke: currentColor;
stroke-linecap: round;
stroke-linejoin: round;
stroke-width: 2;
width: 19px;
}
@media (max-width: 640px) {
#pr-latest-first-jump-controls {
bottom: max(12px, env(safe-area-inset-bottom));
right: max(12px, env(safe-area-inset-right));
}
.pr-latest-first-jump-button {
height: 36px;
width: 36px;
}
}