2017-07-11 15:37:43 +00:00
|
|
|
.keyboard-shortcuts {
|
|
|
|
padding: #{20 / $base-font-size}rem;
|
|
|
|
padding-bottom: #{40 / $base-font-size}rem;
|
|
|
|
width: #{450 / $base-font-size}rem;
|
|
|
|
}
|
|
|
|
|
2020-05-26 21:48:47 +00:00
|
|
|
.keyboard-shortcuts-note {
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 24px;
|
|
|
|
}
|
|
|
|
|
2017-07-11 15:37:43 +00:00
|
|
|
.keyboard-shortcut-item {
|
|
|
|
display: flex;
|
|
|
|
& + & {
|
|
|
|
margin-top: #{10 / $base-font-size}rem;
|
|
|
|
}
|
|
|
|
align-items: baseline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.keyboard-shortcut__command {
|
|
|
|
font-weight: bold;
|
|
|
|
text-align: right;
|
2020-05-28 20:44:00 +00:00
|
|
|
margin-right: #{10 / $base-font-size}rem;
|
|
|
|
padding: #{3 / $base-font-size}rem;
|
|
|
|
@include themify {
|
|
|
|
border: 1px solid getThemifyVariable("button-border-color");
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.keyboard-shortcuts__title {
|
|
|
|
padding-bottom: #{10 / $base-font-size}rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.keyboard-shortcuts__description {
|
|
|
|
padding-bottom: #{10 / $base-font-size}rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.keyboard-shortcuts__list:not(:last-of-type) {
|
|
|
|
padding-bottom: #{10 / $base-font-size}rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.keyboard-shortcuts__title:not(:first-of-type) {
|
|
|
|
@include themify() {
|
|
|
|
border-top: 1px dashed getThemifyVariable("button-border-color");
|
|
|
|
padding-top: #{10 / $base-font-size}rem;
|
|
|
|
}
|
2017-07-11 15:37:43 +00:00
|
|
|
}
|