user proper indentation

This commit is contained in:
koksnuss 2020-04-29 13:22:33 +02:00
parent 49b1905bf4
commit e5f281e7e6
2 changed files with 7 additions and 6 deletions

View File

@ -27,9 +27,9 @@ body {
} }
a, a:hover, a:active, a:visited { a, a:hover, a:active, a:visited {
text-decoration: none; text-decoration: none;
color: black !important; color: black !important;
cursor: default; cursor: default;
vertical-align: inherit; vertical-align: inherit;
} }
@ -54,6 +54,7 @@ table {
width: 360px; width: 360px;
table-layout: fixed; table-layout: fixed;
white-space: nowrap; white-space: nowrap;
margin-bottom: 30px !important;
} }
table tr { table tr {

View File

@ -1,7 +1,7 @@
<ul class="nav nav-pills"> <ul class="nav nav-pills">
{% for country in countrys %} {% for country in countrys %}
<li class="nav-item"> <li class="nav-item">
<a class="nav-link btn btn-outline-primary" href="#{{ country.name_iso }}">{{ country.name }}</a> <a class="nav-link btn btn-outline-primary" href="#{{ country.name_iso }}">{{ country.name }}</a>
</li> </li>
{% endfor %} {% endfor %}
</ul> </ul>