Skip to content

Commit 2d34b96

Browse files
author
MargeBot
committed
Merge branch 'MAILWEB-6608-toolbar-arrow' into 'main'
Make the toolbar take the full available width to show navigation See merge request web/clients!16845
2 parents 490bd45 + 7ef69b8 commit 2d34b96

File tree

5 files changed

+4
-5
lines changed

5 files changed

+4
-5
lines changed

applications/mail/src/app/components/toolbar/Toolbar.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ const Toolbar = (props: Props) => {
9191
case 'rowWide':
9292
return <ToolbarRowWide {...commonProps} />;
9393
default:
94-
// columnWide
9594
return <ToolbarColumnWide {...commonProps} />;
9695
}
9796
};

applications/mail/src/app/components/toolbar/ToolbarColumnWide.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ const ToolbarColumnWide = ({
6969
const pageSize = useMailSelector(pageSizeSelector);
7070

7171
return (
72-
<div>
72+
<div className="w-full">
7373
<nav
7474
className={clsx(
7575
classname,

applications/mail/src/app/components/toolbar/ToolbarHeaderMessageWide.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const ToolbarHeaderMessageWide = ({
6262
const { localIsTiny } = getToolbarResponsiveSizes(breakpoint);
6363

6464
return (
65-
<div>
65+
<div className="w-full">
6666
<nav
6767
className={clsx(classname, 'toolbar--in-container')}
6868
data-shortcut-target="mailbox-toolbar"

applications/mail/src/app/components/toolbar/ToolbarNarrow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const ToolbarNarrow = ({
3636
const breakpoint = useElementBreakpoints(toolbarRef, BREAKPOINTS);
3737

3838
return (
39-
<div>
39+
<div className="w-full">
4040
<nav
4141
className={clsx(classname, 'justify-space-between py-1 pl-3 pr-2')}
4242
data-shortcut-target="mailbox-toolbar"

applications/mail/src/app/components/toolbar/ToolbarRowWide.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ const ToolbarRowWide = ({
7171
const pageSize = useMailSelector(pageSizeSelector);
7272

7373
return (
74-
<div>
74+
<div className="w-full">
7575
<nav
7676
className={clsx(classname, 'justify-space-between py-1 pl-4 pr-2')}
7777
data-shortcut-target="mailbox-toolbar"

0 commit comments

Comments
 (0)