16 lines
517 B
Twig
16 lines
517 B
Twig
<div{{ attributes }}>
|
|
<div class="flex flex-col bg-sky-950 border-neutral-700 border-t-4 border-t-orange-500 rounded-xl
|
|
backdrop-filter backdrop-blur-md bg-opacity-40
|
|
">
|
|
<div class="p-4 md:p-5">
|
|
<h3 class="mb-4 text-lg font-bold text-white">
|
|
{{ title }}
|
|
</h3>
|
|
|
|
<div class="{{ contentClass|default('flex flex-col overflow-hidden rounded-md') }}">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|