40 lines
534 B
SCSS
40 lines
534 B
SCSS
.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;
|
|
}
|
|
}
|