Skip to content

Commit

Permalink
Merge pull request #50 from vishal-bhangare/main
Browse files Browse the repository at this point in the history
Fixed menu-items overflowing underline
  • Loading branch information
dakshsinghrathore authored Jan 4, 2024
2 parents c6547f2 + 5670871 commit df9cc59
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
14 changes: 7 additions & 7 deletions dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -117,32 +117,32 @@
</header>
<div
id="headerDropList"
class="w-1/3 sm:w-64 min-w-min h-36 right-8 rounded-xl rounded-tr-none fixed top-14 z-50 border bg-transparent backdrop-blur-sm md:hidden"
class="w-1/3 sm:w-64 min-w-min h-36 right-8 rounded-xl rounded-tr-none fixed top-14 z-50 border bg-transparent backdrop-blur-sm md:hidden overflow-hidden"
>
<ul class="h-full flex-col justify-evenly">
<li
class="h-1/3 border-0 border-b border-b-gray-700 text-center text-xl"
class="h-1/3 border-0 border-b border-b-gray-700 text-center text-xl hover:text-gray-500/75"
>
<a
class="text-gray-500 transition hover:text-gray-500/75 h-full w-full flex justify-center items-center"
class="text-gray-500 transition h-full w-full flex justify-center items-center"
href="about.html"
>
About
</a>
</li>
<li
class="h-1/3 border-0 border-b border-b-gray-700 text-center text-xl"
class="h-1/3 border-0 border-b border-b-gray-700 text-center text-xl hover:text-gray-500/75"
>
<a
class="text-gray-500 transition hover:text-gray-500/75 h-full w-full flex justify-center items-center"
class="text-gray-500 transition h-full w-full flex justify-center items-center"
href="services.html"
>
Services
</a>
</li>
<li class="h-1/3 text-center text-xl">
<li class="h-1/3 text-center text-xl hover:text-gray-500/75">
<a
class="text-gray-500 transition hover:text-gray-500/75 h-full w-full flex justify-center items-center"
class="text-gray-500 transition h-full w-full flex justify-center items-center"
href="blog.html"
>
Blog
Expand Down
9 changes: 5 additions & 4 deletions dist/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1970,12 +1970,13 @@ select {
}
.hover\:text-gray-500\/75::after {
content: "";
width: 150%;
display: block;
width: 100%;
background-color: #fff;
height: 2px;
left: -25%;
position: absolute;
bottom: -6px;
/* left: -25%; */
position: relative;
bottom: 1px;
transform: scaleX(0);
transition: transform 0.2s linear;
}
Expand Down

0 comments on commit df9cc59

Please sign in to comment.