Skip to content

Commit

Permalink
Responsive Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
adityabagrii committed Jun 18, 2024
1 parent e2e07e3 commit c373216
Show file tree
Hide file tree
Showing 2 changed files with 107 additions and 4 deletions.
86 changes: 85 additions & 1 deletion src/components/Manager.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
.main-manager{
margin-left: auto;
margin-right: auto;
height: 91dvh;
height: 90dvh;
background-color: #202020;
display: flex;
/* justify-content: center; */
Expand Down Expand Up @@ -171,4 +171,88 @@ a{

.icons:hover{
scale: 1.1;
}

@media (max-width: 768px){
.main-manager{
height: 93dvh;
}
.user-pass{
flex-direction: column;
gap: 1rem;
}
.pass{
width: 95%;
}
.container{
width: 90%;
}
.spasswordsHead{
width: 90%;
}
.spasswordsBody{
width: 90%;
}
.container > .inp{
width: 95%;
}
.inp{
width: 95%;
font-size: 2vw;
}
.addBtn{
font-size: 1.5vh;
}
.addimg{
width: 15px;
}
.passwordINP{
width: 100%;
font-size: 2vw;

}
.Eye{
width: 20px;
}
.Show{
right: 5%;
}
.icons{
width: 25px;
}
.heading{
font-size: 4vw;
}
.noPasswords{
font-size: 3vw;
}
.addBtn{
font-size: 3vw;
}
.addimg{
width: 10px;
}

.thead{
padding: 2% 1%;
}

td{
padding: 1% 0.5%;
}

.spasswordsHead{
width: 90%;
border-radius: 1.5rem;
font-size: 3vw;
}

.copyIcon{
width: 16px;
}
.icons{
width: 16px;
}


}
25 changes: 22 additions & 3 deletions src/components/Navbar.css
Original file line number Diff line number Diff line change
@@ -1,14 +1,33 @@
nav{
background-color: #191919;
height: 9dvh;
height: 10dvh;
color: white;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-family: Poppins;
}

.main{
font-size: xx-large;
font-size: 2rem;
font-weight: bolder;
}
}

.subtext{
font-size:1.5rem;
}

@media (max-width: 768px){
nav{
height:7dvh;
}
.main{
font-size: 4vw;
font-weight: bolder;
}

.subtext{
font-size:2vw;
}
}

0 comments on commit c373216

Please sign in to comment.