Merge pull request #14356 from shariquerik/primary-navbar-css-fix
fix: Fixed css for Primary Navbar template
This commit is contained in:
commit
91f446ef04
4 changed files with 31 additions and 3 deletions
|
|
@ -13,6 +13,10 @@
|
|||
.navbar-light {
|
||||
border-bottom: 1px solid $border-color;
|
||||
background: $navbar-bg;
|
||||
|
||||
.navbar-toggler .icon {
|
||||
stroke: none;
|
||||
}
|
||||
}
|
||||
|
||||
.navbar-primary {
|
||||
|
|
@ -25,6 +29,10 @@
|
|||
}
|
||||
}
|
||||
|
||||
.navbar-brand {
|
||||
color: white;
|
||||
}
|
||||
|
||||
.navbar-search {
|
||||
background-color: var(--blue-400);
|
||||
width: 300px;
|
||||
|
|
@ -36,6 +44,14 @@
|
|||
}
|
||||
}
|
||||
|
||||
.navbar-toggler {
|
||||
border-color: rgba(255,255,255, 0.1);
|
||||
|
||||
.icon {
|
||||
stroke: none;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
svg use {
|
||||
--icon-stroke: white;
|
||||
|
|
|
|||
|
|
@ -30,7 +30,11 @@
|
|||
aria-controls="navbarSupportedContent"
|
||||
aria-expanded="false"
|
||||
aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
<span>
|
||||
<svg class="icon icon-lg">
|
||||
<use href="#icon-menu"></use>
|
||||
</svg>
|
||||
</span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -15,7 +15,11 @@
|
|||
aria-controls="navbarSupportedContent"
|
||||
aria-expanded="false"
|
||||
aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
<span>
|
||||
<svg class="icon icon-lg">
|
||||
<use href="#icon-menu"></use>
|
||||
</svg>
|
||||
</span>
|
||||
</button>
|
||||
|
||||
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
||||
|
|
|
|||
|
|
@ -15,7 +15,11 @@
|
|||
aria-controls="navbarSupportedContent"
|
||||
aria-expanded="false"
|
||||
aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
<span>
|
||||
<svg class="icon icon-lg">
|
||||
<use href="#icon-menu"></use>
|
||||
</svg>
|
||||
</span>
|
||||
</button>
|
||||
|
||||
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue