Skip to content

Commit

Permalink
Cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanbohacek committed Sep 14, 2021
1 parent 4484860 commit 6a2af39
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 10 deletions.
4 changes: 4 additions & 0 deletions css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -7407,6 +7407,10 @@ body .container {
body .container.blog-home, body .container.blog-home .container {
max-width: 1200px !important; }

.blog-more {
max-width: 980px !important;
margin: 0 auto; }

body.home-page .container {
max-width: 1024px !important; }
body.home-page .container .row {
Expand Down
2 changes: 1 addition & 1 deletion css/styles.min.css

Large diffs are not rendered by default.

18 changes: 10 additions & 8 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,16 @@
</h1> -->
<?php get_template_part('loop-blog'); ?>
<?php get_template_part('pagination'); ?>
<h3>Wait, there's more!</h3>
<ul>
<li>follow us at <a href="https://twitter.com/botwikidotorg">@botwikidotorg</a></li>
<li>keep up with new bots and blog updates via <a href="https://twitter.com/newonbotwiki">@newonbotwiki</a></li>
<li>subscribe to our <a href="/botwiki-weekly-digest/">weekly digest</a></li>
<li>check out our <a href="/learn/#blogs-and-websites">blogroll</a></li>
<li><a href="/about/team">meet the team</a></li>
</ul>
<div class="blog-more">
<h3>Wait, there's more!</h3>
<ul>
<li>follow us at <a href="https://twitter.com/botwikidotorg">@botwikidotorg</a></li>
<li>keep up with new bots and blog updates via <a href="https://twitter.com/newonbotwiki">@newonbotwiki</a></li>
<li>subscribe to our <a href="/botwiki-weekly-digest/">weekly digest</a></li>
<li>check out our <a href="/learn/#blogs-and-websites">blogroll</a></li>
<li><a href="/about/team">meet the team</a></li>
</ul>
</div>
</div>
</main>
<?php get_footer(); ?>
7 changes: 6 additions & 1 deletion src/styles/layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,17 @@ body{

&.blog-home{
&, .container{
max-width: $max-content-width-blog !important;
max-width: $max-content-width-blog !important;
}
}
}
}

.blog-more{
max-width: $max-content-width !important;
margin: 0 auto;
}

body.home-page{
.container{
max-width: $menu-width !important;
Expand Down

0 comments on commit 6a2af39

Please sign in to comment.