Fix displayed ordering of keyboard shortcuts

This commit is contained in:
Keavon Chambers 2024-02-28 21:51:36 -08:00
parent 96e52c18eb
commit 4405e01f55
7 changed files with 57 additions and 38 deletions

View file

@ -150,13 +150,24 @@
<style lang="scss" global>
.user-input-label {
flex: 0 0 auto;
height: 100%;
align-items: center;
white-space: nowrap;
&.text-only {
.input-key + .input-key::before {
content: "+";
display: flex;
.input-key {
display: flex;
align-items: center;
.icon-label {
margin: calc(calc(18px - 12px) / 2) 0;
}
& + .input-key::before {
line-height: 18px;
content: "+";
}
}
}