Skip to content
Snippets Groups Projects
Commit 4842ce8d authored by Tobias Mieves's avatar Tobias Mieves :sparkles:
Browse files

Merge branch 'develop' into 'main'

Add word-break and hyphens-auto to better deal with text

See merge request !26
parents ba624a39 65908df2
No related branches found
No related tags found
1 merge request!26Add word-break and hyphens-auto to better deal with text
Pipeline #206647 passed
{% load static %}
<!DOCTYPE html>
<html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}Core{% endblock %}</title>
<link href="{% static 'core/css/output.css' %}" rel="stylesheet" type="text/css">
{# <meta http-equiv="refresh" content="10">#}
{% block head %}{% endblock %}
</head>
<body>
<body class="break-words hyphens-auto">
{% block content %}
{% endblock %}
</body>
......
{% load static %}
<!DOCTYPE html>
<html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}Core{% endblock %}</title>
<link href="{% static 'core/css/output.css' %}" rel="stylesheet" type="text/css">
{#<meta http-equiv="refresh" content="10">#}
{% block head %}{% endblock %}
</head>
<body>
<div class="drawer">
<div class="drawer break-words hyphens-auto">
<input id="drawer" type="checkbox" class="drawer-toggle" />
<div class="drawer-content flex flex-col">
<!-- Navbar -->
......@@ -69,7 +68,7 @@
</div>
</div>
<!-- Page content here -->
<main class="p-4 w-full">
<main class="p-4 w-full break-words hyphens-auto">
{% block content %}
Content
{% endblock %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment