diff --git a/src/_includes/css/utils.css b/src/_includes/css/utils.css index 10175b512..2245d318f 100644 --- a/src/_includes/css/utils.css +++ b/src/_includes/css/utils.css @@ -971,7 +971,7 @@ TYPOGRAPHY .Badge { font-family: var(--sans); - border-radius: 4px; + border-radius: 5px; font-weight: 550; background-color: var(--neon); color: var(--color-bg); @@ -989,6 +989,12 @@ TYPOGRAPHY &.Badge--warn { background-color: var(--yellow); } + + &.Badge--outline { + background-color: transparent; + border: 2px solid var(--border-color); + color: var(--grey); + } } @media (max-width: 1215px) { diff --git a/src/reading.njk b/src/reading.njk index 740f11f0b..6f0f44f48 100644 --- a/src/reading.njk +++ b/src/reading.njk @@ -40,20 +40,26 @@ menu: {{ book.author }} -
{{ book.notes | excerpt | md | safe }}
+ {% if book.notes %} +
{{ book.notes | excerpt | md | safe }}
- {% if didExcerpt(book.notes) %} -

- Continued ⇢ -

+ {% if didExcerpt(book.notes) %} +

+ Continued ⇢ +

+ {% endif %} + {% else %} +
+
+
{% endif %} - + {% if book.dropped %} - Dropped + Dropped {% else %} {% if book.paused %} - Paused + Paused {% else %} {% if book.finished %} {% if book.finishedAt %} @@ -63,7 +69,7 @@ menu: {{ book.location }} {% endif %} {% else %} - Reading + Reading {% endif %} {% endif %} {% endif %}