Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Align inline buttons on FilteredDeviceListHeader on Sessions user settings tab #11067

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions res/css/views/settings/tabs/_SettingsTab.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,20 @@ limitations under the License.
gap: $spacing-8;
flex-grow: 1;
}
// never want full width buttons
// event when other content is 100% width
.mx_AccessibleButton {
align-self: flex-start;
justify-self: flex-start;
}

.mx_Field {
margin: 0;
flex: 1;
}

#mx_tabpanel_USER_GENERAL_TAB & {
/* On General settings tab never want full width buttons */
/* event when other content is 100% width */
.mx_AccessibleButton {
align-self: flex-start;
justify-self: flex-start;
}
}
}

.mx_SettingsTab_warningText {
Expand Down
Loading