diff options
-rw-r--r-- | data/style.scss | 5 | ||||
-rw-r--r-- | src/renderer.rs | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/data/style.scss b/data/style.scss index 9bfbeaf..7d8a73d 100644 --- a/data/style.scss +++ b/data/style.scss @@ -42,6 +42,11 @@ body { word-break: break-word; } +.title a { + font-weight: bold; + color: var(--directory_link_color); +} + .footer { text-align: center; padding-top: 1.5rem; diff --git a/src/renderer.rs b/src/renderer.rs index b193c6f..c99ea67 100644 --- a/src/renderer.rs +++ b/src/renderer.rs @@ -86,7 +86,7 @@ pub fn page( // wrapped in span so the text doesn't shift slightly when it turns into a link span { bdi { (el.name) } } } @else { - a.directory href=(parametrized_link(&el.link, sort_method, sort_order)) { + a href=(parametrized_link(&el.link, sort_method, sort_order)) { bdi { (el.name) } } } |