mirror of
https://github.com/vector-im/element-web.git
synced 2025-12-27 20:21:55 +01:00
* Update dependency stylelint-config-standard to v39 * Iterate Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
33 lines
706 B
Plaintext
33 lines
706 B
Plaintext
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2021 Šimon Brandner <simon.bra.ag@gmail.com>
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
.mx_KeyboardShortcut_shortcutList {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
display: grid;
|
|
gap: $spacing-4;
|
|
}
|
|
|
|
.mx_KeyboardShortcut_shortcutRow,
|
|
.mx_KeyboardShortcut {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.mx_KeyboardShortcut_shortcutRow {
|
|
column-gap: $spacing-8;
|
|
}
|
|
|
|
.mx_KeyboardShortcut {
|
|
flex-wrap: nowrap;
|
|
column-gap: $spacing-4;
|
|
}
|