Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The hamburger menu content is not visible in mobile screen view. #1142 #1153

Merged
merged 4 commits into from
Aug 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion index.css
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ option {
@media (max-width: 768px) {
.nav_menu {
flex-direction: column;
margin-left: 0;
}

.hamburger {
Expand All @@ -240,7 +241,7 @@ option {
flex-direction: column;
position: fixed;
top: 60px;
left: 20px;
left: 0px;
background-color: #022a2d;
width: 45% !important;
margin-top: 30px;
Expand All @@ -256,6 +257,7 @@ option {
.nav_link li {
margin: 10px 0;
font-size: 18px;

}

.nav_link a {
Expand Down
19 changes: 12 additions & 7 deletions news.html
Original file line number Diff line number Diff line change
Expand Up @@ -120,17 +120,22 @@
.header_container {
flex-direction: column;
align-items: start;
height: 24.8rem;
transition: 0.55s all ease-out;
/* background-color: transparent !important; */
/* padding-top: 5px; */
}

.nav_link {
display: flex;
flex-direction: column;
position: relative;
bottom: 40px;
left: 10px;
display: none;
flex-direction: column;
position: fixed;
top: 64px;
left: 0px;
background-color: #022a2d;
width: 45% !important;
margin-top: 30px;
padding: 20px;
z-index: 10;
box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
}
/* .nav-link li{
margin-bottom: 5px;
Expand Down
Loading