fix: missing style definition for .submit-group

This commit is contained in:
Luca 2024-11-02 19:48:44 +01:00
parent 81f1d44700
commit cabf4538d2
1 changed files with 6 additions and 1 deletions

View File

@ -1,11 +1,13 @@
{% extends "cfp/event/base.html" %}
{% load compress %}
{% load i18n %}
{% load static %}
{% block title %}{{ submission.title }} ::{% endblock %}
{% block cfp_header %}
{% block stylesheets %}
{% compress css %}
<link rel="stylesheet" type="text/css" href="{% static "common/css/_forms.css" %}" />
<style>
.musicrate-pagination {
display: flex;
@ -21,6 +23,9 @@
}
</style>
{% endcompress %}
{% endblock %}
{% block cfp_header %}
{% block submission_header %}
{% endblock %}
{% endblock %}