mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-24 01:20:32 +08:00
68b1930852
* settingssubsection text component * use semantic headings in HelpUserSetttings tab * test * strict * lint * semantic heading in labs settings * semantic headings in keyboard settings tab * semantic heading in preferencesusersettingstab * tidying * findByTestId * prettier * allow testids in settings sections * use semantic headings in LabsUserSettingsTab * use semantic headings in usersettingspreferences * rethemendex * put back margin var
41 lines
1.0 KiB
Plaintext
41 lines
1.0 KiB
Plaintext
/*
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
Copyright 2021 Šimon Brandner <simon.bra.ag@gmail.com>
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
.mx_KeyboardShortcut_shortcutList {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
display: grid;
|
|
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;
|
|
}
|