Commit a86a1b93ad62f32cfdc25dccd66a826487b60885

Authored by hitier
1 parent 2816e773

Set some margins

app/static/css/style.css
... ... @@ -8,7 +8,7 @@ html {
8 8 bottom: 0;
9 9 width: 100%;
10 10 height: 40px;
11   - margin-bottom: 20px;
  11 + margin-bottom: 35px;
12 12 }
13 13  
14 14 .sidebar {
... ...
app/templates/flash-messages.html
1 1 {% with messages = get_flashed_messages(with_categories=true) %}
2 2 {% if messages %}
3   - <div id="messages">
  3 + <div id="messages" class="mt-1">
4 4 {% for level, message in messages %}
5 5 {% if level == 'message' %}
6 6 <div class="alert alert-primary}" role="alert">{{ message }}
... ... @@ -14,4 +14,4 @@
14 14 {% endfor %}
15 15 </div>
16 16 {% endif %}
17 17 - {% endwith %}
  18 + {% endwith %}
18 19 \ No newline at end of file
... ...