Skip to content
Snippets Groups Projects
Commit 78bac299 authored by Shraddha Raghuram's avatar Shraddha Raghuram
Browse files

attempt one fixing navbar glitch

parent 40a16f74
No related branches found
No related tags found
No related merge requests found
Pipeline #406839 passed
......@@ -86,10 +86,13 @@ body{
.son{
margin-top: 30px;
list-style: none;
display: none;
text-align: left;
transition: all 0.3s ease-out;
visibility: hidden;
opacity: 0;
transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}
.my-navbar > li:hover .son {
visibility: visible;
opacity: 1;
}
/* Adjust for smaller screens */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment