Compare commits
2 commits
63c7ab497e
...
7269fcbc6b
Author | SHA1 | Date | |
---|---|---|---|
7269fcbc6b | |||
5850aa95c3 |
3 changed files with 5 additions and 4 deletions
|
@ -10,7 +10,7 @@ form ul.errorlist {
|
|||
grid-column: 1 / -1;
|
||||
color: var(--red);
|
||||
font-weight: 550;
|
||||
list-style-type: "! ";
|
||||
list-style-type: "! ";
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
|
@ -36,7 +36,8 @@ form > input[type="text"],
|
|||
form > input[type="number"],
|
||||
form > textarea {
|
||||
border: none;
|
||||
border-bottom: 1px solid var(--text);
|
||||
border-radius: var(--radius);
|
||||
background: var(--bg-01);
|
||||
}
|
||||
|
||||
form > .buttons {
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<nav>
|
||||
<a href="{% url 'index' %}"
|
||||
class="home{% if request.resolver_match.url_name == 'index' %} cur{% endif %}">
|
||||
<img src="{% static 'main/svg/logo-white.svg' %}" />Nummi
|
||||
<img src="{% static 'main/svg/logo-white.svg' %}" alt="" />Nummi
|
||||
</a>
|
||||
<a href="{% url 'transactions' %}"
|
||||
class="{% if request.resolver_match.url_name == 'transactions' %}cur{% endif %}">
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
<h1><img src="{% static 'main/svg/logo.svg' %}" />Nummi</h1>
|
||||
<h1><img src="{% static 'main/svg/logo.svg' %}" alt="" />Nummi</h1>
|
||||
|
||||
{% if transactions %}
|
||||
<h2>Transactions</h2>
|
||||
|
|
Loading…
Reference in a new issue