Commit fe74c223507c9359a8ff7dbd53866d13ca95b0d2

Authored by hitier
1 parent 527a6709

Fix top nav title img position

Showing 1 changed file with 3 additions and 2 deletions   Show diff stats
app/templates/base_page.html
... ... @@ -6,8 +6,9 @@
6 6 </head>
7 7 <body>
8 8 <nav class="navbar navbar-dark sticky-top bg-dark navbar-expand-lg p-1">
9   - <img class="mb-0" src="{{ url_for('static', filename='img/pdc-ico.png') }}" height="30" width="30"/>
10   - <a class="navbar-brand col-sm-3 col-md-2 mr-0" href="{{url_for('main.index')}}">Plan de Charges</a>
  9 + <a class="navbar-brand col-sm-3 col-md-2 " href="{{url_for('main.index')}}">
  10 + <img class="m-0 mr-1" src="{{ url_for('static', filename='img/pdc-ico.png') }}" height="30" width="30"/>
  11 + Plan de Charges</a>
11 12 <ul class="navbar-nav ml-auto">
12 13 {% if not current_user.is_anonymous %}
13 14 <li class="nav-item">
... ...