diff options
author | Malf Furious <m@lfurio.us> | 2018-09-19 18:17:46 -0400 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2018-09-19 18:17:46 -0400 |
commit | 5f187a7602d6ceeac9dbd81e84fbfc13f0b73ea9 (patch) | |
tree | 82187c697cbfc612d06ba12a204ece4808d5efc9 | |
parent | defac79722307d68191e9d28346a9fd8502319da (diff) | |
download | scrott-5f187a7602d6ceeac9dbd81e84fbfc13f0b73ea9.tar.gz scrott-5f187a7602d6ceeac9dbd81e84fbfc13f0b73ea9.zip |
stdpage: Add additional spacing to "Not Logged In" text
This additional spacing is added to the navbar text to improve its
appearance in the browser.
-rw-r--r-- | app/view/stdpage.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/view/stdpage.php b/app/view/stdpage.php index acd1ba2..2eb2c2c 100644 --- a/app/view/stdpage.php +++ b/app/view/stdpage.php @@ -188,7 +188,7 @@ require_once "view/settings.php"; <div class="collapse navbar-collapse" id="scrottnav"> <?php if (!\user::getCurrent()) { ?> - <p class="navbar-text navbar-right"><i>Not Logged In </i></p> + <p class="navbar-text navbar-right"><i>Not Logged In </i></p> <?php } else { ?> <ul class="nav navbar-nav"> <li><a href="<?=ap()?>"><span class="glyphicon glyphicon-refresh"></span></a></li> |