This commit is contained in:
Simon Vieille 2022-09-27 20:30:16 +02:00
parent f16fa35515
commit 313ebbd685
Signed by: deblan
GPG key ID: 579388D585F70417
2 changed files with 10 additions and 5 deletions

View file

@ -124,13 +124,18 @@ pre[class*="language-"] {
// border-radius: 10px;
// }
//
.captcha_image {
margin-bottom: 5px;
}
.captcha_reload {
width: 50px !important;
padding-left: 50px;
height: 50px;
overflow: hidden;
display: inline-block;
margin-bottom: -19px;
margin-bottom: -19px;i
&:active, &:focus {
background: none;

View file

@ -14,13 +14,13 @@
</h2>
<ul class="md:flex md:gap-3 pl-0">
<li class="pl-0 mt-0 sm:mb-0">
<li class="pl-0 mt-0 sm:inline">
<time datetime="{{ post.publishedAt|date("Y-m-d") }}" title="{{ post.publishedAt|date("r") }}">
{{- 'Le ' ~ post.publishedAt|date("d/m/Y à H\\hi") -}}
</time>
</li>
{% for category in post.categories %}
<li class="pl-0 mt-0 sm:mb-0">
<li class="pl-0 mt-0 sm:inline">
<a href="{{ safe_path('blog_menu_category', {category: category.id, slug: category.slug, _domain: _domain}) }}">
{{- category.title -}}
</a>
@ -28,7 +28,7 @@
{% endfor %}
{% for tag in post.tags %}
<li class="pl-0 mt-0 sm:mb-0">
<li class="pl-0 mt-0 sm:inline">
<a href="{{ safe_path('blog_menu_search', {tag: tag.label, _domain: _domain}) }}">
{{- '#' ~ tag.label -}}
</a>
@ -169,7 +169,7 @@
</div>
</div>
<div class="col-span-2">
<div class="flex justify-start gap-3">
<div class="md:flex justify-start gap-3">
{{ form_label(form.captcha, null, {label_attr: {class: 'label'}}) }}
{{ form_widget(form.captcha, {attr: {class: 'input input-bordered'}}) }}
</div>