Skip to content

Commit

Permalink
bg layer added
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharsinghbisht committed Oct 30, 2024
1 parent 5cb978d commit b10fe94
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
File renamed without changes.
16 changes: 14 additions & 2 deletions src/app/components/Navbar.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,20 @@
}
.navList {
padding: 14px 0px;
background: rgba(18, 17, 17, 0.523);
backdrop-filter: blur(5px);
background: rgba(11, 10, 10, 0.523);
backdrop-filter: blur(3px);
}
.navbar {
position: relative;
}
.navbar::after {
content: "";
position: absolute;
width: 100vw;
height: 100vh;
top: 0;
background-color: #01010167;
z-index: -1;
}
}
@media only screen and (max-width: 450px) {
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/tabs/MemberTab.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
display: flex;
align-items: center;
justify-content: space-between;
justify-content: start;
justify-content: flex-start;
}

0 comments on commit b10fe94

Please sign in to comment.