From c1abdc238b4e6ea74872fd183094f49bd94adebf Mon Sep 17 00:00:00 2001 From: David Lapshin Date: Thu, 25 Apr 2024 12:07:43 +0300 Subject: [PATCH] Change the warning icon in disclaimer to bigger one Outline variant appears too small, filled one on the other hand fits perfectly --- templates/blog.html | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/templates/blog.html b/templates/blog.html index 618fac3..b549677 100644 --- a/templates/blog.html +++ b/templates/blog.html @@ -29,21 +29,30 @@ {% if page.extra.archive %}
- Archived + + + Archived + {{ page.extra.archive | markdown | safe }}
{% endif %} {% if page.extra.trigger %}
- Trigger Warning + + + Trigger Warning + {{ page.extra.trigger | markdown | safe }}
{% endif %} {% if page.extra.disclaimer %}
- Disclaimer(s) + + + Disclaimer(s) + {{ page.extra.disclaimer | markdown | safe }}
{% endif %}