diff options
author | Thomas Lange <code@nerdmind.de> | 2024-02-03 21:09:13 +0100 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2024-02-03 21:18:01 +0100 |
commit | 9be821773ee684172bddd4acfbb1e56cd7e7c938 (patch) | |
tree | 3630b337c7de83a8ab85bda9de3af4aace350779 /theme/default/html/main.php | |
parent | 2f269c24a98f9bf6f21ade5e49a188874eee648a (diff) | |
download | blog-9be821773ee684172bddd4acfbb1e56cd7e7c938.tar.gz blog-9be821773ee684172bddd4acfbb1e56cd7e7c938.tar.xz blog-9be821773ee684172bddd4acfbb1e56cd7e7c938.zip |
Fix use of wrong Fontello class for nav toggle
Broken since 6f1c594 when the class name in the Fontello SCSS file has
been renamed from `fa-bars` to `fa-menu` and it was forgotten to also
change the use of the class name in the HTML template.
Diffstat (limited to 'theme/default/html/main.php')
-rw-r--r-- | theme/default/html/main.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/theme/default/html/main.php b/theme/default/html/main.php index 46dcc84..f226ff1 100644 --- a/theme/default/html/main.php +++ b/theme/default/html/main.php @@ -57,7 +57,7 @@ $BLOGMETA_DESC = escapeHTML($BLOGMETA['DESC']); </a> </div> <nav id="main-navi"> - <label for="toogle-nav" id="toogle-nav-label" class="fa fa-bars"></label> + <label for="toogle-nav" id="toogle-nav-label" class="fa fa-menu"></label> <input type="checkbox" id="toogle-nav"> <ul> <li> |