Skip to content

Commit 71688b8

Browse files
fix: fix postcss flexbox warnings (#5859)
1 parent 8f2ca88 commit 71688b8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

packages/main/src/components/ActionSheet/ActionSheet.module.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
}
99

1010
.actionSheet [ui5-button]:not([data-cancel-btn])::part(button) {
11-
justify-content: start;
11+
justify-content: flex-start;
1212
}
1313

1414
.actionSheet::part(header) {

packages/main/src/components/FilterGroupItem/FilterGroupItem.module.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
.innerFilterItemContainer {
1515
display: flex;
1616
flex-direction: column;
17-
justify-content: start;
17+
justify-content: flex-start;
1818

1919
> :last-child {
2020
width: 100%;

packages/main/src/components/SelectDialog/SelectDialog.module.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
.footer {
5555
display: flex;
5656
align-items: center;
57-
justify-content: end;
57+
justify-content: flex-end;
5858
width: 100%;
5959
box-sizing: border-box;
6060

packages/main/src/components/Toolbar/Toolbar.module.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115

116116
> [ui5-button]::part(button),
117117
> [ui5-toggle-button]::part(button) {
118-
justify-content: start;
118+
justify-content: flex-start;
119119
}
120120

121121
> [ui5-button][icon-only]::part(button),

0 commit comments

Comments
 (0)