diff options
author | Florian Dold <florian@dold.me> | 2021-02-26 11:13:15 +0100 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2021-02-26 11:13:15 +0100 |
commit | a40a57007d323fb743e29f969663e579c95900c4 (patch) | |
tree | 2c9d2d391f7e460a89638258dccb8c7a4e927ca7 /template | |
parent | ce93b47755a900912006b83e710d3ff05647b9bd (diff) | |
download | www-a40a57007d323fb743e29f969663e579c95900c4.tar.gz www-a40a57007d323fb743e29f969663e579c95900c4.tar.bz2 www-a40a57007d323fb743e29f969663e579c95900c4.zip |
fix logo display
Diffstat (limited to 'template')
-rw-r--r-- | template/index.html.j2 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/template/index.html.j2 b/template/index.html.j2 index 1e4f4d3..11677b5 100644 --- a/template/index.html.j2 +++ b/template/index.html.j2 @@ -3,7 +3,9 @@ <div class="container"> <div class="row justify-content-center"> - <img style="width:40vw" src="{{ url_static('images/logo-2020.jpg') }}"> + <div style="width:40vw;" > + <img style="width:100%; height: auto; display: block" src="{{ url_static('images/logo-2020.jpg') }}"> + </div> </div> <div class="row mt-5"> |