File tree Expand file tree Collapse file tree 5 files changed +4
-5
lines changed
applications/mail/src/app/components/toolbar Expand file tree Collapse file tree 5 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,6 @@ const Toolbar = (props: Props) => {
91
91
case 'rowWide' :
92
92
return < ToolbarRowWide { ...commonProps } /> ;
93
93
default :
94
- // columnWide
95
94
return < ToolbarColumnWide { ...commonProps } /> ;
96
95
}
97
96
} ;
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ const ToolbarColumnWide = ({
69
69
const pageSize = useMailSelector ( pageSizeSelector ) ;
70
70
71
71
return (
72
- < div >
72
+ < div className = "w-full" >
73
73
< nav
74
74
className = { clsx (
75
75
classname ,
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ const ToolbarHeaderMessageWide = ({
62
62
const { localIsTiny } = getToolbarResponsiveSizes ( breakpoint ) ;
63
63
64
64
return (
65
- < div >
65
+ < div className = "w-full" >
66
66
< nav
67
67
className = { clsx ( classname , 'toolbar--in-container' ) }
68
68
data-shortcut-target = "mailbox-toolbar"
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ const ToolbarNarrow = ({
36
36
const breakpoint = useElementBreakpoints ( toolbarRef , BREAKPOINTS ) ;
37
37
38
38
return (
39
- < div >
39
+ < div className = "w-full" >
40
40
< nav
41
41
className = { clsx ( classname , 'justify-space-between py-1 pl-3 pr-2' ) }
42
42
data-shortcut-target = "mailbox-toolbar"
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ const ToolbarRowWide = ({
71
71
const pageSize = useMailSelector ( pageSizeSelector ) ;
72
72
73
73
return (
74
- < div >
74
+ < div className = "w-full" >
75
75
< nav
76
76
className = { clsx ( classname , 'justify-space-between py-1 pl-4 pr-2' ) }
77
77
data-shortcut-target = "mailbox-toolbar"
You can’t perform that action at this time.
0 commit comments