diff options
author | Markus Cisler <m@kuchen.io> | 2013-09-25 18:06:46 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2013-09-25 20:57:50 +0200 |
commit | 6c7ab381646754c657755274f706905e5bfacbf2 (patch) | |
tree | a40663b1e8577f564471163ed9aea6cdf34b9ab0 | |
parent | b5c24e997abbbc6a0cd6b8d65fe70f550e8d273f (diff) |
Align the brand image correctly
-rw-r--r-- | application/views/header.php | 2 | ||||
-rw-r--r-- | data/css/style.css | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/application/views/header.php b/application/views/header.php index 75f51664a..8f246aeb8 100644 --- a/application/views/header.php +++ b/application/views/header.php @@ -43,7 +43,7 @@ if (is_cli_client() && !isset($force_full_html)) { </button> <a class="navbar-brand" href="<?php echo site_url(); ?>"><?php if (file_exists(FCPATH."data/local/logo.svg")) { - echo '<img src="'.link_with_mtime("/data/local/logo.svg").'" style="height: 20px"> FileBin'; + echo '<img class="brand-icon" src="'.link_with_mtime("/data/local/logo.svg").'" style="height: 20px"> FileBin'; } else { echo "FileBin"; } diff --git a/data/css/style.css b/data/css/style.css index 1ee0cbfb9..5f1286e82 100644 --- a/data/css/style.css +++ b/data/css/style.css @@ -16,6 +16,10 @@ color: inherit !important; } +.brand-icon { + vertical-align: bottom; +} + .login-page { max-width: 300px; } |