change the distance between blog category buttons a bit
Web/pipeline/head This commit looks good Details

This commit is contained in:
Ell 2021-03-31 16:12:34 +02:00
parent ea411c3599
commit 8e2dc6f2f4
2 changed files with 3 additions and 3 deletions

View File

@ -23,14 +23,14 @@ function populateBlog(json, currCat) {
cats.html("");
// force all and featured categories to be first
addCatButton(json, cats, "All", currCat);
addCatButton(json, cats, "All Posts", currCat);
addCatButton(json, cats, "Featured", currCat);
for (let i = json.length - 1; i >= 0; i--) {
let post = json[i];
for (let cat of post.cat)
addCatButton(json, cats, cat, currCat);
if (currCat === "All" || post.cat.includes(currCat)) {
if (currCat === "All Posts" || post.cat.includes(currCat)) {
let p = /*html*/ `
<div class="card bg-light blog-entry rounded-0">
<div class="card-body">

View File

@ -85,7 +85,7 @@ body {
.blog-cat-button {
padding: 0px;
margin-right: 10px;
margin-right: 15px;
}
#blog-archive-button {