Files
element-web/res/css/views/dialogs/_SettingsDialog.pcss
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
904 B
Plaintext
Raw Normal View History

2019-01-24 19:12:09 -07:00
/*
2024-09-09 14:57:16 +01:00
Copyright 2019-2024 New Vector Ltd.
2019-01-24 19:12:09 -07:00
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
2024-09-09 14:57:16 +01:00
Please see LICENSE files in the repository root for full details.
2019-01-24 19:12:09 -07:00
*/
/* Not actually a component but things shared by settings components */
.mx_UserSettingsDialog,
.mx_RoomSettingsDialog,
.mx_SpaceSettingsDialog,
.mx_SpacePreferencesDialog {
2019-04-08 19:11:04 +01:00
width: 90vw;
max-width: 980px;
/* set the height too since tabbed view scrolls itself. */
2019-04-08 19:11:04 +01:00
height: 80vh;
2019-04-08 16:48:42 +01:00
.mx_TabbedView {
top: 90px;
2019-01-24 19:12:09 -07:00
}
2019-04-08 16:48:42 +01:00
.mx_TabbedView .mx_SettingsTab {
box-sizing: border-box;
min-width: 580px;
padding-right: 100px;
display: flex;
flex-direction: column;
2019-04-08 16:48:42 +01:00
/* Put some padding on the bottom to avoid the settings tab from */
/* colliding harshly with the dialog when scrolled down. */
2019-04-08 16:48:42 +01:00
padding-bottom: 100px;
}
2019-01-24 19:12:09 -07:00
}