fix: CSS on stats page

pull/135/head
Raphaël Vinot 2020-12-07 13:33:14 +01:00
parent 9f84b26ffe
commit 0a632c966a
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,18 @@
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.grid path,
.grid line {
fill: none;
stroke: rgba(0, 0, 0, 0.25);
shape-rendering: crispEdges;
}
.line {
fill: none;
stroke-width: 2.5px;
}

View File

@ -76,3 +76,8 @@
<script src='{{ url_for('static', filename='d3.v6.min.js') }}'></script>
<script src='{{ url_for('static', filename='stats_graph.js') }}'></script>
{% endblock %}
{% block styles %}
{{ super() }}
<link rel="stylesheet" href="{{ url_for('static', filename='stats.css') }}">
{% endblock %}