Skip to content

Commit

Permalink
Facebook Authentication
Browse files Browse the repository at this point in the history
  • Loading branch information
Ojas-Arora committed Jul 24, 2024
2 parents 687efd0 + 0cdff8b commit 9a241c2
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/Components/feedback/feedback.css
Original file line number Diff line number Diff line change
Expand Up @@ -147,4 +147,4 @@ button:hover {
.headingFeedback {
font-size: 40px;
}
}
}
41 changes: 34 additions & 7 deletions src/Components/footer_section/Mail/Mail.css
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
.inputmail{
.inputmail {
width: 300px;
height: 40px;
border: 1px solid #ccc;
border-radius: 5px;
padding: 0 10px;
margin-right: 10px;
}
.subscribe-mail{

.subscribe-mail {
display: flex;
align-items: center;
justify-content: center;
gap: 100px;
}
btn1{

btn1 {
background: #574d91;
color: #000000;
padding: 10px 20px;
Expand All @@ -21,14 +23,39 @@ btn1{
cursor: pointer;
transition: all ease 0.3s;
}
btn1:hover{

btn1:hover {
background: #252041;
}
.mail{

.mail {
display: flex;
flex-direction: row;
width: min-content;
width: 500px;
}
p{

p {
font-weight: 900;
}

@media only screen and (max-width:915px) {
.subscribe-mail {
flex-direction: column;
gap: 2px;
}
}

@media only screen and (max-width:490px) {
.mail {
flex-direction: column;
width: 85vw;
}

.inputmail {
width: 90%;
}

.btn1 {
width: 90%;
}
}

0 comments on commit 9a241c2

Please sign in to comment.