This repository was archived by the owner on Jan 13, 2025. It is now read-only.

Description
Hey,
In MDC Toolbar, the title has a left-margin of 16px.
The problems with that are:
- If you remove the left menu icon, the title will have a wrong padding on the left.
- According to Material Design Guidelines, the margin shouldn't be
16px
. The margin from the left of the screen is 16, the width of the icon is 24, and the title is 72 away from the screen so we get 72 - 24 - 16 = 32px
which is the distance between the icon and the title.

The solution is to add a margin-right to the left menu icon of 32px
.
I am ready to make a PR to fix this.