scss: don't add parenthesis around badge in bottom bar mobile mode (#35282)

This commit is contained in:
Frédéric Péters 2019-08-07 11:06:50 +02:00
parent 560b3d9681
commit df5fa16308
1 changed files with 6 additions and 0 deletions

View File

@ -178,6 +178,12 @@ div.menucell {
}
span.badge::before { content: '('; }
span.badge::after { content: ')'; }
@if $nav-mobile-mode == bottom-bar {
@media screen and (max-width: $nav-mobile-limit) {
span.badge::before { content: none; }
span.badge::after { content: none; }
}
}
}
@if $nav-mobile-mode == hamburger {