diff options
author | Ali MJ Al-Nasrawy <alimjalnasrawy@gmail.com> | 2021-04-09 11:52:03 +0000 |
---|---|---|
committer | Ali MJ Al-Nasrawy <alimjalnasrawy@gmail.com> | 2021-04-09 11:52:21 +0000 |
commit | 32a88fe41457acc8f1525a951dbe40d39ffe8ce3 (patch) | |
tree | a622234c197155cd4c7c3d2457140c65073e9c13 /data/style.scss | |
parent | Fix breadcrumbs for RTL languages (diff) | |
download | miniserve-32a88fe41457acc8f1525a951dbe40d39ffe8ce3.tar.gz miniserve-32a88fe41457acc8f1525a951dbe40d39ffe8ce3.zip |
Fix breadcrumbs mess on mobile
On mobile devices, 'display: block' is set for '.directory' class. While
this neccessary to make the whole row for directories entry clickable, it
distorts the links in breadcrumbs.
Diffstat (limited to '')
-rw-r--r-- | data/style.scss | 5 |
1 files changed, 5 insertions, 0 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; |