Skip to content

Commit

Permalink
fix: description display
Browse files Browse the repository at this point in the history
  • Loading branch information
hexxcatee committed May 24, 2024
1 parent da286b4 commit d93077f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions core/templates/core/error.html
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{% extends 'core/base.html' %}

{% block content %}
<div class="h-80vh w-screen my-28 flex items-center">
<div class="h-screen w-screen my-28 flex items-center justify-center">
<div class="container flex md:flex-row items-center justify-between px-20 text-gray-700">
<div class="w-full mx-8">
<div class="text-7xl text-gray-400 font-dark font-extrabold mb-8">{{ error_id }}</div>
<p class="text-2xl md:text-3xl font-light leading-normal mb-8">{{ description|linebreaks }}
Możesz zgłosić błąd <a class="text-indigo-700 font-bold" href="https://github.com/Gwardia-Czapli/GwardiaHub">tutaj</a></p>
<div class="text-8xl text-gray-400 font-dark font-extrabold mb-8">{{ error_id }}</div>
<p class="text-2xl font-light leading-normal mb-8">{{ description|linebreaksbr }}
<br>Możesz zgłosić błąd <a class="text-indigo-700 font-bold" href="https://github.com/Gwardia-Czapli/GwardiaHub">tutaj</a>
</p>
</div>
<div class="w-full lg:flex lg:justify-end lg:w-1/2 mx-5 my-12">
{% load static %}
<img src="{{ image }}" alt="Error img"/>
</div>
</div>
Expand Down

0 comments on commit d93077f

Please sign in to comment.