Skip to content

Commit

Permalink
Fix rendering on mobile version (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
QubitPi authored Dec 23, 2024
1 parent 99f6abf commit c68f04c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@
.container .mainSection {
display: flex;
flex-direction: row;
flex-wrap:wrap;

gap: 3rem;
}
Expand Down
6 changes: 4 additions & 2 deletions src/components/Footer.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@

.footer {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}

.footer .footerInfo {
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: center;
align-items: center;
Expand Down Expand Up @@ -51,8 +53,6 @@
flex-direction: column;
justify-content: center;
align-items: center;


}

.footer .footerInfo .navigation ul .listItem a span svg {
Expand Down Expand Up @@ -81,7 +81,9 @@

.footer .logo {
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: center;
align-items: center;
}

Expand Down
1 change: 1 addition & 0 deletions src/components/Header.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

.header {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}
Expand Down

0 comments on commit c68f04c

Please sign in to comment.