pocketsize / bolts-wp

A starter theme for WordPress using Bolts
2 stars 0 forks source link

Set backface-visibility: hidden on lines in burger() mixin #87

Open andreekeberg opened 4 years ago

andreekeberg commented 4 years ago

Consider adding backface-visibility: hidden to all three lines in the burger mixin, to fix the situations where when using $line: 1px, the lines get way too thin when rotated.

&,
&:before,
&:after {
    display: block;
    backface-visibility: hidden;
}