mirror of
https://github.com/Crocmagnon/checkout.git
synced 2024-11-22 16:18:03 +01:00
Fix reports graphs display on smaller screens
This commit is contained in:
parent
aa8e1fa5b5
commit
36c35abbe8
2 changed files with 9 additions and 0 deletions
4
src/purchase/static/purchase/css/reports.css
Normal file
4
src/purchase/static/purchase/css/reports.css
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
svg {
|
||||||
|
max-width: 100%;
|
||||||
|
height: auto;
|
||||||
|
}
|
|
@ -1,7 +1,12 @@
|
||||||
{% extends "common/base.html" %}
|
{% extends "common/base.html" %}
|
||||||
|
{% load static %}
|
||||||
{% load i18n %}
|
{% load i18n %}
|
||||||
{% load purchase %}
|
{% load purchase %}
|
||||||
|
|
||||||
|
{% block extrahead %}
|
||||||
|
<link rel="stylesheet" href="{% static "purchase/css/reports.css" %}">
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h1>{% translate "Reports" %}</h1>
|
<h1>{% translate "Reports" %}</h1>
|
||||||
<h2>{% translate "General" %}</h2>
|
<h2>{% translate "General" %}</h2>
|
||||||
|
|
Loading…
Reference in a new issue