cleaner spaces

This commit is contained in:
imperosol 2024-11-28 12:15:32 +01:00
parent 670417bb2f
commit 66aa93d488
3 changed files with 4 additions and 2 deletions

View File

@ -262,8 +262,10 @@ a:not(.button) {
font-weight: normal; font-weight: normal;
color: white; color: white;
padding: 9px 13px; padding: 9px 13px;
margin: 3px;
border: none; border: none;
text-decoration: none; text-decoration: none;
text-align: center;
border-radius: 5px; border-radius: 5px;
&.btn-blue { &.btn-blue {
@ -367,6 +369,7 @@ a:not(.button) {
.alert-aside { .alert-aside {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 5px;
} }
} }

View File

@ -5,6 +5,6 @@
hx-swap="outerHTML" hx-swap="outerHTML"
> >
{% csrf_token %} {% csrf_token %}
{{ form.as_div() }} {{ form.as_p() }}
<input type="submit" value="{% trans %}Save{% endtrans %}"> <input type="submit" value="{% trans %}Save{% endtrans %}">
</form> </form>

View File

@ -15,7 +15,6 @@
<a class="btn btn-blue" href="{{ subscription.member.get_absolute_url() }}"> <a class="btn btn-blue" href="{{ subscription.member.get_absolute_url() }}">
{% trans %}Go to user profile{% endtrans %} {% trans %}Go to user profile{% endtrans %}
</a> </a>
<br>
<a class="btn btn-grey" href="{{ url("subscription:subscription") }}"> <a class="btn btn-grey" href="{{ url("subscription:subscription") }}">
{# We don't know if this fragment is displayed after creating a subscription {# We don't know if this fragment is displayed after creating a subscription
for a previously existing user or for a newly created one. for a previously existing user or for a newly created one.