dlang / D-Blog-Theme

WordPress theme for dlang.org/blog
3 stars 3 forks source link

Menu button is hardly visible on mobile phones #24

Open wilzbach opened 6 years ago

wilzbach commented 6 years ago

I really feel bad for being the only one reporting issues, but the menu button is just a grey box:

image

Here's a CSS quickfix that works for me:

.site-branding .secondary-toggle {
  background-color: grey;
  color: grey;
}
.site-branding .secondary-toggle a.hamburger::after {
    content: "\f0c9";
    font-family: FontAwesome;
    color: white;
    font-size: 30px
    margin-left: -17px;
}

image