style desktop nav panel

This commit is contained in:
isUnknown 2024-04-15 13:43:57 +02:00
parent 57e9ca74da
commit 81454b3e4e
16 changed files with 157 additions and 136 deletions

View file

@ -25,7 +25,7 @@ $activeTab = isset($activeTab) ? Str::slug($activeTab) : '';
><?= $left['label'] ?></button>
<?php endif ?>
<button
class="toggle right"
class="toggle-btn toggle-btn--right"
:class="activeTab === 'texts' ? 'open' : 'close'"
title="Voir tous les textes"
@click="toggleTab($data, 'texts')"
@ -69,9 +69,9 @@ $activeTab = isset($activeTab) ? Str::slug($activeTab) : '';
<?php if (!$authorFilter || $authorFilter == $article->author()->toUser()->name()->value()) : ?>
<?php snippet(
'text-item',
[
'article' => $article
]
array(
'article' => $article
)
) ?>
<?php endif ?>
<?php endforeach ?>