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

#issue 32 resolved Responsiveness of home page #48

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
8 changes: 6 additions & 2 deletions frontend/src/components/Mission_vision/style.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@
}

@media only screen and (max-width: 1180px) {
.content{
padding-left: 0;
}
.container {
grid-template-columns: 100% 00%;
justify-content: center;
Expand All @@ -68,11 +71,12 @@
display: none;
}
.heading,
.heading2,
.para {
.heading2{
text-align: center;
font-size: 3rem;
}
.para {
text-align: center;
margin: 1vh auto;
width: 90%;
}
Expand Down
16 changes: 14 additions & 2 deletions frontend/src/components/WhyUs/style.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -60,21 +60,33 @@
}

@media only screen and (max-width: 1180px) {
.content{
padding-left: 0;
}
.container {
grid-template-columns: 100% 00%;
justify-content: center;
padding-left: 0;
align-items: flex-start;
}
.vectors {
display: none;
}
.heading,
.heading2,
.para {
.heading2 {
font-size: 3rem;
text-align: center;
}
.para {
text-align: center;
margin: 1vh auto;
width: 90%;
}
}

@media only screen and (max-width: 370px) {
.container {
padding-top: 20vh;
}
}

5 changes: 3 additions & 2 deletions frontend/src/components/aboutUs/style.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,12 @@
display: none;
}
.heading,
.heading2,
.para {
.heading2{
font-size: 3rem;
text-align: center;
}
.para {
text-align: center;
margin: 1vh auto;
width: 80%;
}
Expand Down
4 changes: 4 additions & 0 deletions frontend/src/pages/homePage/style.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
}
.container {
justify-content: center;
padding-left: 0;
align-items: center;
}
.heading {
Expand All @@ -78,6 +79,9 @@
}

@media only screen and (max-width: 650px) {
.container{
padding-left: 0;
}
.heading {
font-size: 2rem;
text-align: center;
Expand Down