Fix Main, user account, reports and admin side nav bars to prevent text overflow when collapsed now only show back button when collapsed

This commit is contained in:
johnnyq
2024-09-18 17:52:19 -04:00
parent 5f46536a85
commit 4dd24531cb
5 changed files with 25 additions and 14 deletions

View File

@@ -4,10 +4,9 @@
<a class="brand-link pb-1 mt-1" href="clients.php">
<p class="h5">
<i class="nav-icon fas fa-arrow-left ml-3 mr-2"></i>
Back |
<strong>
<?php if($client_abbreviation) { echo $client_abbreviation; } else { echo shortenClient($client_name); } ?>
</strong>
<span class="brand-text">
Back | <strong><?php if($client_abbreviation) { echo $client_abbreviation; } else { echo shortenClient($client_name); } ?></strong>
</span>
</p>
</a>