Use this CSS to change the size of the hamburger icon and text. Adjust font size as required.
/* Icon and text */
.menu-toggle {
font-size: 40px;
}
Use this CSS to change the size of the hamburger icon only. Adjust font size as required.
/* Icon only */
.menu-toggle::before {
font-size: 40px;
vertical-align: middle;
}
