General styling improvements Many UI Improvements - Consistent spacing between titles and content - Removed many ugly text squishing by hiding overflowing text with ellipsis - Fixed Service favicon being squisched by long service name - Hide scrollbar in 'more session' screen when content isn't scrollable - Fix apexcharts tooltips and labels being cut off by card class Disable wrapping in table cells, prefer ellipsis Ellipsis overflow for long url on hit page Fix flex grow in header not working as intended Remove forgotten truncatechars Fix code checks, add button role and tabindex
14 lines
319 B
HTML
14 lines
319 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<div class="flex-1 truncate">
|
|
<h4 class="heading truncate">{% block page_title %}{% endblock %}</h4>
|
|
</div>
|
|
<hr class="sep">
|
|
{% block main %}
|
|
<div class="card ~neutral !low max-w-lg content">
|
|
{% block card %}
|
|
{% endblock %}
|
|
</div>
|
|
{% endblock %}
|
|
{% endblock %} |