aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--pysite/rst/roles.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pysite/rst/roles.py b/pysite/rst/roles.py
index 00d12dba..abade243 100644
--- a/pysite/rst/roles.py
+++ b/pysite/rst/roles.py
@@ -40,7 +40,7 @@ def icon_role(_role: str, rawtext: str, text: str, lineno: int, inliner: Inliner
return [prb], [msg]
- html = f"""<i class="uk-icon {weight} fa-{parts[1]}"></i>"""
+ html = f"""<i class="uk-icon fa-fw {weight} fa-{parts[1]}"></i>"""
node = nodes.raw(html, html, format="html", **options)
return [node], []