Diana Whitten a84e904225 Default Theme:Responsive Menu shouldn't have Arrow
The responsive menu on the 'default' theme shouldn't have the little
'arrow' associated with it.

Closes-bug: #1539972

Change-Id: Icb4a500e9bd3bb1e11853391a5357876ffa61348
2016-02-03 14:52:30 +00:00

29 lines
437 B
SCSS

.navbar {
border-top: none;
border-right: none;
border-left: none;
// Specificity Required
.navbar-toggle {
border-color: transparent;
}
// Pushes the menu slightly down from the navbar
li > .dropdown-menu {
margin-top: 2px;
@media (max-width: $screen-sm) {
&:after,
&:before {
border: none;
}
}
}
}
// Specificity required
.topbar {
.navbar {
margin-bottom: 0;
}
}