diff options
| -rw-r--r-- | index.html | 2 | ||||
| -rw-r--r-- | res/css/partials/top-bar.scss | 3 | ||||
| -rw-r--r-- | res/css/style.css | 5 |
3 files changed, 8 insertions, 2 deletions
@@ -25,7 +25,7 @@ </form> </div> </div> - <img class="organization-logo" src="res/img/CRI-logo.png"> + <div class="organization-logo"></div> </div> </div> <div class="search-bar"> diff --git a/res/css/partials/top-bar.scss b/res/css/partials/top-bar.scss index a04fdb77..cffd200a 100644 --- a/res/css/partials/top-bar.scss +++ b/res/css/partials/top-bar.scss @@ -54,4 +54,7 @@ .organization-logo { display: inline-block; margin-left: 12px; + background: url(../img/CRI-logo.png); + min-height: 30px; + min-width: 30px; }
\ No newline at end of file diff --git a/res/css/style.css b/res/css/style.css index f5a2985a..3e8374e7 100644 --- a/res/css/style.css +++ b/res/css/style.css @@ -482,7 +482,10 @@ input { .organization-logo { display: inline-block; - margin-left: 12px; } + margin-left: 12px; + background: url(../img/CRI-logo.png); + min-height: 30px; + min-width: 30px; } /* Headings */ h1 { |
