aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoah Loomans <noahloomans@gmail.com>2018-05-21 17:00:54 +0200
committerNoah Loomans <noahloomans@gmail.com>2018-05-21 17:03:11 +0200
commit5592be9988f7b48c0a256d7c56dc770d2960fcb1 (patch)
tree92c3a4087f3f66bae2f6eb6010dcc16a8a57e917
parent08465e9dbbd4c8b6b26ba2d468c996a88018aed7 (diff)
Hardcode logo width and height in HTML
This prevents it from filling up the page with my face for a split second before returning to an acceptable size.
-rw-r--r--_includes/header.html7
1 files changed, 6 insertions, 1 deletions
diff --git a/_includes/header.html b/_includes/header.html
index a6bdaab..e8ccb02 100644
--- a/_includes/header.html
+++ b/_includes/header.html
@@ -1,7 +1,12 @@
<header>
<div class="logo-container">
<a href="{{ "/" | relativize_url }}">
- <img src="{{ "/assets/face.jpg" | relativize_url }}" alt="Noah Loomans" class="logo">
+ <img
+ class="logo"
+ src="{{ "/assets/face.jpg" | relativize_url }}"
+ alt="Noah Loomans"
+ width="150"
+ height="150">
</a>
<div class="dotted-line"></div>
</div>