Removed optical bug in SCSS files

This commit is contained in:
Christian Wolf 2021-12-03 14:41:11 +01:00
parent f9e06732c4
commit 5073f8ac71
3 changed files with 36 additions and 25 deletions

View File

@ -0,0 +1,35 @@
#current_page_menu.menu
{
background-color: transparent;
padding-top: 0px;
padding-bottom: 0px;
margin-bottom: 0px;
&:hover
{
box-shadow: unset;
}
> li
{
border-style: none;
display: none;
&.active
{
display: block;
border-style: none;
> a
{
background-color: transparent;
font-weight: bold;
}
}
}
}

View File

@ -1,2 +1,3 @@
@use "slideshow";
@use "article";
@use "current-page-manu";

View File

@ -21,31 +21,6 @@
}
}
.nav {
background-color: transparent;
padding-top: 0;
padding-bottom: 0;
&:hover {
box-shadow: unset;
}
> li {
border-style: none;
display: none;
&.active {
display: block;
border-style: none;
> a {
background-color: transparent;
font-weight: bold;
}
}
}
}
.nav > li,
.nav-child > li {
padding: 5px 0;