adding padding to dropdown item and recompile
This commit is contained in:
parent
ea969369d9
commit
4aadbb4b3d
|
@ -6010,7 +6010,10 @@ a.skip-link {
|
|||
|
||||
.dropdown-menu .menu-item {
|
||||
width: 100%; }
|
||||
.dropdown-menu .menu-item a:hover {
|
||||
.dropdown-menu .menu-item a.nav-link {
|
||||
margin: 0px;
|
||||
padding: 0.5em 1em; }
|
||||
.dropdown-menu .menu-item a.nav-link:hover {
|
||||
background-color: #895cd1; }
|
||||
|
||||
button,
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -152,7 +152,14 @@ a.skip-link {
|
|||
|
||||
.dropdown-menu .menu-item {
|
||||
width: 100%;
|
||||
a:hover { background-color: $brand-primary; }
|
||||
a.nav-link{
|
||||
margin:0px;
|
||||
padding:$nav-link-padding;
|
||||
|
||||
}
|
||||
a.nav-link:hover {
|
||||
background-color: $brand-primary;
|
||||
}
|
||||
}
|
||||
|
||||
button,
|
||||
|
|
Reference in New Issue