Skip to content

Commit

Permalink
fix: fix postcss flexbox warnings (#5859)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcusNotheis authored May 28, 2024
1 parent 8f2ca88 commit 71688b8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
}

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

.actionSheet::part(header) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
.innerFilterItemContainer {
display: flex;
flex-direction: column;
justify-content: start;
justify-content: flex-start;

> :last-child {
width: 100%;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
.footer {
display: flex;
align-items: center;
justify-content: end;
justify-content: flex-end;
width: 100%;
box-sizing: border-box;

Expand Down
2 changes: 1 addition & 1 deletion packages/main/src/components/Toolbar/Toolbar.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@

> [ui5-button]::part(button),
> [ui5-toggle-button]::part(button) {
justify-content: start;
justify-content: flex-start;
}

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

0 comments on commit 71688b8

Please sign in to comment.