Fix last menu item tip overflowing out of document

This commit is contained in:
Alice Gaudon 2020-07-06 12:49:28 +02:00
parent 19224d592a
commit 8aad521014

View File

@ -150,26 +150,34 @@ header {
} }
@media (min-width: $menuLayoutSwitchTreshold) { @media (min-width: $menuLayoutSwitchTreshold) {
nav ul li a .tip { nav ul li {
visibility: hidden; a .tip {
position: absolute; visibility: hidden;
display: block; position: absolute;
width: max-content; display: block;
height: 30px; width: max-content;
padding: 4px 8px; height: 30px;
line-height: 22px; padding: 4px 8px;
top: calc(100% + 8px); line-height: 22px;
left: 50%; top: calc(100% + 8px);
transform: translateX(-50%); left: 50%;
transform: translateX(-50%);
text-align: center; text-align: center;
font-size: 18px; font-size: 18px;
color: $defaultTextColor; color: $defaultTextColor;
opacity: 0; opacity: 0;
transition: opacity ease-out 100ms, visibility step-end 150ms; transition: opacity ease-out 100ms, visibility step-end 150ms;
transition-delay: 0ms; transition-delay: 0ms;
background-color: #000; background-color: #000;
border-radius: 5px; border-radius: 5px;
}
&:last-child a .tip {
left: unset;
right: 4px;
transform: none;
}
} }
} }
} }