Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Use flex-start instead of start in several places (#9500)
Browse files Browse the repository at this point in the history
To keep webpack quiet about it, since apparently it has "mixed browser support".
  • Loading branch information
turt2live authored Oct 25, 2022
1 parent 8d6a67e commit de51bfd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion res/css/views/dialogs/_SpotlightDialog.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ limitations under the License.
}

&.mx_SpotlightDialog_result_multiline {
align-items: start;
align-items: flex-start;

.mx_AccessibleButton {
padding: $spacing-4 $spacing-20;
Expand Down
2 changes: 1 addition & 1 deletion res/css/views/elements/_UseCaseSelection.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ limitations under the License.
.mx_UseCaseSelection_skip {
display: flex;
flex-direction: column;
align-self: start;
align-self: flex-start;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ limitations under the License.

.mx_FormattingButtons {
display: flex;
justify-content: start;
justify-content: flex-start;

.mx_FormattingButtons_Button {
--size: 28px;
Expand Down

0 comments on commit de51bfd

Please sign in to comment.