blob: 9182292ffd3834d87a1bdf77ec944b4cbdfd97db (
plain)
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
|
.shortcut-help {
&-body {
height: 80vh;
overflow-y: scroll;
}
&-container {
column-count: 1;
@include media-breakpoint-up(md) {
column-count: 2;
}
column-gap: 1rem;
}
&-mapping {
overflow: hidden;
break-inside: avoid;
&-title {
margin-left: 40%;
}
kbd {
margin: 0.1rem 0;
line-height: unset;
font-size: unset;
}
}
}
.documentation {
padding: 7px;
font-size: $gl-font-size-large;
}
.card.links-card {
a {
color: $blue-600;
}
}
|