Skip to content

Commit

Permalink
Adjusted footer for mobile visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
soumyaranjan-panda authored and chimosky committed Jun 17, 2024
1 parent 0ba1b85 commit 1b18455
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 3 deletions.
6 changes: 5 additions & 1 deletion _includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ <h5 style="text-align:right;margin-right:20px;"><a href="#top" class="hrefCustom
<div class="row justify-content-around">
<div class="col-md-2 widget">
<h6 class="footerHeaderStyle align-center-md text-center-md">
Sugar Labs® is a registered USA 501(c)(3) tax-exempt, not-for-profit organization, supported by our generous contributors and sponsors. <a href="https://wiki.sugarlabs.org/go/Sugar_Labs/Donate">Donate</a> or <a href="https://wiki.sugarlabs.org/go/Sugar_Labs/Getting_Involved">Volunteer</a> today!
Sugar Labs® is a registered USA 501(c)(3) tax-exempt, not-for-profit organization, supported by our generous contributors and sponsors.
<p class="DonateFooter">
<a href="https://wiki.sugarlabs.org/go/Sugar_Labs/Donate">Donate</a> or
<a href="https://wiki.sugarlabs.org/go/Sugar_Labs/Getting_Involved">Volunteer today</a>!
</p>
</h6>
</div>
<div class="col-md-3 widget">
Expand Down
26 changes: 24 additions & 2 deletions css/airspace.css
Original file line number Diff line number Diff line change
Expand Up @@ -885,12 +885,34 @@ footer .footer-manu ul li a:hover {
padding-bottom:5px;
}

.DonateFooter {
font-family: 'Arial', sans-serif;
font-size: 16px;
color: #ffffff;
text-align: left;
margin: 5px 0;
}

.DonateFooter a {
color: #3498db;
text-decoration: none;
font-weight: bold;
}

@media only screen and (max-width: 768px) {
.footerHeaderStyle {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.widget_content{
display:none;
display:flex;
justify-content: center;
}
.active .widget_content{
display:inline;
display: flex;
flex-direction: column;
}
.widget h4 {
}
Expand Down

4 comments on commit 1b18455

@Kl0099
Copy link

@Kl0099 Kl0099 commented on 1b18455 Jun 23, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@soumyaranjan-panda hii , I would like to contribute to this repository, and I have already changed the Twitter icon. What should I do next?"

@soumyaranjan-panda
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To edit or add icons, follow this updated README file (yet to be merged).
e65de2d
But which issue are you working on? Do we need to change our Twitter logo?

@Kl0099
Copy link

@Kl0099 Kl0099 commented on 1b18455 Jun 23, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To edit or add icons, follow this updated README file (yet to be merged). e65de2d But which issue are you working on? Do we need to change our Twitter logo?

I am just a beginner in the open source community. What can I do? I mean, how can I start making effective contributions?

@quozl
Copy link
Contributor

@quozl quozl commented on 1b18455 Jun 23, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For specific advice on contributing to the Sugar Labs open source community, see Contributing. Focus on our software, i.e. Sugarizer, Music Blocks or Sugar. Don't focus on our web site unless you have already contributed to our software.

For general advice on contributing to open source communities, see How To Become A Hacker by Eric Raymond.

Please sign in to comment.