2020-03-19 00:40:21 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-01-17 19:53:10 +08:00
|
|
|
Copyright 2021 Šimon Brandner <simon.bra.ag@gmail.com>
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
2020-03-19 00:40:21 +08:00
|
|
|
|
2024-09-09 21:57:16 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2020-03-19 00:40:21 +08:00
|
|
|
*/
|
|
|
|
|
2023-05-17 10:34:55 +08:00
|
|
|
.mx_KeyboardShortcut_shortcutList {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
width: 100%;
|
|
|
|
display: grid;
|
|
|
|
grid-gap: $spacing-4;
|
|
|
|
}
|
2022-06-13 22:12:48 +08:00
|
|
|
|
2023-05-17 10:34:55 +08:00
|
|
|
.mx_KeyboardShortcut_shortcutRow,
|
|
|
|
.mx_KeyboardShortcut {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2022-06-13 22:12:48 +08:00
|
|
|
|
2023-05-17 10:34:55 +08:00
|
|
|
.mx_KeyboardShortcut_shortcutRow {
|
|
|
|
column-gap: $spacing-8;
|
|
|
|
}
|
2022-06-13 22:12:48 +08:00
|
|
|
|
2023-05-17 10:34:55 +08:00
|
|
|
.mx_KeyboardShortcut {
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
column-gap: $spacing-4;
|
2020-03-19 00:40:21 +08:00
|
|
|
}
|