bookmark-manager/ui/widgets/title.njk
2025-05-17 16:20:29 +02:00

16 lines
No EOL
466 B
Text

{% macro alignLeft(title) %}
<div class="w-full flex flex-col p-4">
<h1 class="font-extrabold text-gray-900 text-4xl md:text-5xl lg:text-6xl text-left pb-4 border-b border-gray-500">
{{ title }}
</h1>
</div>
{% endmacro %}
{% macro largeLeft(title, settings) %}
<div class="w-full flex flex-col py-4">
<h1 class="font-extrabold text-gray-900 text-7xl md:text-8xl lg:text-9xl text-center">
{{ title }}
</h1>
</div>
{% endmacro %}