Skip to content

Commit

Permalink
fixed issues with menu options not working in mobile view
Browse files Browse the repository at this point in the history
  • Loading branch information
rjuvekar137 committed May 6, 2024
1 parent 42492bf commit fa0cb0a
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 13 deletions.
2 changes: 1 addition & 1 deletion node_modules/.cache/.eslintcache

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

Binary file modified node_modules/.cache/default-development/0.pack
Binary file not shown.
Binary file modified node_modules/.cache/default-development/11.pack
Binary file not shown.
Binary file modified node_modules/.cache/default-development/15.pack
Binary file not shown.
Binary file modified node_modules/.cache/default-development/17.pack
Binary file not shown.
Binary file modified node_modules/.cache/default-development/index.pack
Binary file not shown.
Binary file modified node_modules/.cache/default-development/index.pack.old
Binary file not shown.
19 changes: 10 additions & 9 deletions src/components/navBar/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
}

@media only screen and (max-width : 768px) {
.navBar__Container__Menu{
.navBar__Container__Menu {
display: flex;
flex-direction: column;
justify-content: center;
Expand All @@ -70,24 +70,25 @@
left: -110%;
opacity: 1;
transition: all 0.5 ease;
z-index: 10; /* Add this line */

&.active{
&.active {
background-color: #181818;
left: 0px;
opacity: 1;
}

&__Item{
&__Item {
border-bottom: 1px solid #282828;
margin: 0px;
padding: 20px 0px;
}
}

.nav-icon{
display: block;
cursor: pointer;
color: var(--theme-main-color);
padding-right: 20px;
.nav-icon {
display: block;
cursor: pointer;
color: var(--theme-main-color);
padding-right: 20px;
}
}
}
4 changes: 2 additions & 2 deletions src/containers/about/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ const About = () => {
drive innovation and creativity in the digital landscape.
</div>
<div>
I hope to bring my technical skills with me in future endeavors and develop solutions to challenging problems.
I look forward to the exciting opportunities that lie at the intersection of technology and creativity!
I hope to bring my technical skills with me in future endeavors and develop solutions to challenging problems.
I look forward to the exciting opportunities that lie at the intersection of technology and creativity!
</div>
</p>
</Animate>
Expand Down
4 changes: 3 additions & 1 deletion src/containers/about/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@
line-height: 1.65;
padding-bottom: 20px;
border-bottom: 1px dashed var(--theme-main-color);
text-indent: 25px;
div{
text-indent: 25px;
}
}

ul > li{
Expand Down

0 comments on commit fa0cb0a

Please sign in to comment.