Correction d'un bug d'1px sur le menu déroulant

This commit is contained in:
raida 2019-06-01 15:18:20 +02:00
parent 322bb5bdec
commit cf9246af64

View file

@ -32,8 +32,9 @@
display: none; display: none;
z-index: 1000; z-index: 1000;
position: absolute; position: absolute;
width: 100%; width: calc(100% + 2px);
border-radius: 0 0 4px 4px; border-radius: 0 0 4px 4px;
left: -1px;
} }
#header nav ul li ul li { #header nav ul li ul li {
@ -276,4 +277,4 @@ body:not(.is-article-visible) #wrapper {
#main article .previous:hover::before { #main article .previous:hover::before {
background-color: rgba(255, 255, 255, 0.075); background-color: rgba(255, 255, 255, 0.075);
} }