Skip to content

Commit

Permalink
fix(DynamicPageTitle): remove inline-end margin of action items (#5291)
Browse files Browse the repository at this point in the history
Fixes #5287
  • Loading branch information
Lukas742 authored Nov 28, 2023
1 parent 4555e5c commit 3382cb9
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,15 @@ export const DynamicPageTitleStyles = {
},
'&>:first-child': {
height: '100%'
},
// toolbar w/o overflow button
'& > [data-component-name="ToolbarContent"]:first-child:last-child > [data-component-name="ToolbarChildContainer"]:last-child':
{
marginInlineEnd: 0
},
// toolbar w/ overflow button
'& [data-component-name="ToolbarOverflowButtonContainer"]': {
marginInlineEnd: 0
}
}
};

0 comments on commit 3382cb9

Please sign in to comment.