Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
lifeparticle committed Sep 25, 2023
1 parent fcb3d45 commit 3617de9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
9 changes: 5 additions & 4 deletions ui/src/components/Layouts/Footer/Footer.module.scss
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
.footer {
padding: var(--bt-size-20) var(--bt-size-20) var(--bt-size-50)
var(--bt-size-50);
padding: 30px 10% 30px 10%;
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
box-shadow: inset 0px 1px 0px #e8e8e8;

&__left {
padding-right: 100px;
padding-right: 5vw;
border-right: 1px solid #e8e8e8;
margin-right: 120px;
margin-right: 6vw;
}

&__right {
Expand All @@ -25,6 +25,7 @@

@media screen and (max-width: 768px) {
.footer {
text-align: center;
&__left {
border-right: none;
padding-right: 0px;
Expand Down
2 changes: 2 additions & 0 deletions ui/src/pages/Home/Home.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@
&__contribution {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}

@media screen and (max-width: 768px) {
Expand Down
2 changes: 1 addition & 1 deletion ui/src/pages/Home/components/Contribution.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const Contribution: React.FC = () => {
};
return (
<section className={style.home__contribution}>
<Space direction="vertical" align="center">
<Space direction="vertical">
<Typography.Title>Join our community</Typography.Title>
<Typography.Text>
Join our open-source community and help shape the future of
Expand Down

0 comments on commit 3617de9

Please sign in to comment.