fix pageinations style

This commit is contained in:
Parsa Nazer
2026-01-06 13:26:43 +03:30
parent 5559d4bba8
commit 91ebd2ed48
3 changed files with 6 additions and 0 deletions
+1
View File
@@ -30,6 +30,7 @@ UNFOLD = {
},
"STYLES": [
lambda request: static("rtl.css"),
lambda request: static("rtl2.css"),
lambda request: static("fonts.css"),
lambda request: static("override.css"),
+4
View File
@@ -0,0 +1,4 @@
div.max-w-full.lg\:bottom-0.lg\:fixed.lg\:left-0.lg\:right-0.xl\:left-72 {
left: 0;
right: unset !important;
}
+1
View File
@@ -8,6 +8,7 @@
{% block extrastyle %}{{ block.super }}<link rel="stylesheet" type="text/css" href="{% static 'override.css' %}" />
<link rel="stylesheet" type="text/css" href="{% static 'fonts.css' %}" />
<link rel="stylesheet" type="text/css" href="{% static 'rtl2.css' %}" />
{% endblock %}
{% block title %}{% if subtitle %}{{ subtitle }} | {% endif %}{{ title }} | {{ site_title|default:_('Django site admin') }}{% endblock %}