lighten display of menu links

This commit is contained in:
tykayn 2020-11-26 11:19:47 +01:00 committed by Baptiste Lemoine
parent 9e1acd23aa
commit 37b400069b
2 changed files with 19 additions and 0 deletions

View File

@ -7047,3 +7047,9 @@ noscript {
}
}
}
.notifications-permission-banner{
padding: 2em;
.button{
margin-top: 1em;
}
}

View File

@ -76,3 +76,16 @@
text-decoration: none;
}
}
// custom bliss
.navigation-panel{
.column-link{
span{
opacity: 0 ;
}
&:hover span{
opacity: 1;
transition: opacity ease 0.1s;
}
}
}