Skip to content

Commit

Permalink
Fixed Footer Overflow issue on the homepage (#973)
Browse files Browse the repository at this point in the history
Signed-off-by: eeshaanSA <eeshaans1@gmail.com>
  • Loading branch information
eeshaanSA authored May 21, 2023
1 parent 7524cc0 commit 1dc0cc3
Showing 1 changed file with 33 additions and 8 deletions.
41 changes: 33 additions & 8 deletions home/src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -98,18 +98,43 @@ html[data-theme=dark] {
}

.footer__links {
width: 75%;
width: 100%;
float: right;
}
.footer__bottom {
width: 25%;
footer > div{
width: 100%;
display: flex;
flex-direction: row;
align-items: center;
}
@media (max-width : 500px){
footer > div {
flex-direction: column;
justify-content: center;
}

}
.footer__col{
text-align: center;
text-justify: distribute-all-lines ;

}
.footer__title{
font-size: x-large;
font-weight: 800px;
}

.footer__bottom > div {
text-align: left;
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.footer--dark {
--ifm-footer-background-color: #20232a;
--ifm-footer-padding-vertical: 85px;

html[data-theme=dark] footer{
background-color: black;

}
.footer__copyright {
font-size: .8em;
Expand Down Expand Up @@ -269,7 +294,7 @@ a code {
.highlightSection .prism-code > div:before {
content: "";
display: block;
width: 12px;
/* width: 12px; */
height: 12px;
background: #27C941;
border-radius: 50%;
Expand Down

0 comments on commit 1dc0cc3

Please sign in to comment.