Skip to content

Commit

Permalink
Removed Hamburger Menu, 4 Row
Browse files Browse the repository at this point in the history
Removed the hamburger menu for mobile devices for now.
Galleries show 4 grids instead of 3.
  • Loading branch information
PatrickJnr committed Mar 29, 2024
1 parent 68f1649 commit d58c91a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions _includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ <h3 class="site-title">
<a href="{{ item.link }}" class="menu-link" target="_blank"><i class="fa fa-{{ item.icon }}" aria-hidden="true"></i></a>
{% endfor %}
</nav>
<div class="dropdown">
<!--- <div class="dropdown">
<button class="dropbtn"><i class="fa fa-bars" aria-hidden="true"></i></button>
<div class="dropdown-content">
{% for item in site.data.settings.menu %}
Expand All @@ -19,6 +19,6 @@ <h3 class="site-title">
{% for item in site.data.settings.social %}
<a href="{{ item.link }}" class="menu-link" target="_blank"><i class="fa fa-{{ item.icon }}" aria-hidden="true"></i></a>
{% endfor %}
</div>
</div> --->
</div>
</header>
6 changes: 4 additions & 2 deletions _sass/_home.scss
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
/* Grid Layout */
.post-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
width: auto;
grid-template-columns: repeat(auto-fill, minmax(200px, auto));
gap: 20px;
padding: 20px;
}

.featured-post {
height: 400px;
height: 300px;
margin: 0 10px 20px;
background-position: center;
background-repeat: no-repeat;
Expand All @@ -27,6 +28,7 @@
margin: 0;
padding: 10px;
position: absolute;
font-size: 18px;
font-family: "Exo 2", sans-serif;
}
.featured-post h2 span {
Expand Down

0 comments on commit d58c91a

Please sign in to comment.