Skip to content
Snippets Groups Projects
Verified Commit 4d3681c1 authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

[Data checks] Fix missing margin for solve buttons

parent 8ca2b645
No related branches found
No related tags found
1 merge request!389Add data check system
Pipeline #5008 passed
......@@ -543,6 +543,10 @@ main .alert p:first-child, main .alert div:first-child {
height: 100%;
}
.btn-margin {
margin-bottom: 5px;
}
/* Dashboard */
......
......@@ -64,7 +64,8 @@
</td>
<td>
{% for option_name, option in result.related_check.solve_options.items %}
<a class="btn waves-effect waves-light" href="{% url "data_check_solve" result.pk option_name %}">
<a class="btn btn-margin waves-effect waves-light"
href="{% url "data_check_solve" result.pk option_name %}">
{{ option.verbose_name }}
</a>
{% endfor %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment