UI: Fix the client top head city state postal below the address from being offset by using a font awesome dummy icon

This commit is contained in:
johnnyq 2024-01-27 02:48:31 -05:00
parent 3c28c2b89b
commit fe33cfa4e9
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@
<div>
<a href="//maps.<?php echo $session_map_source; ?>.com/?q=<?php echo "$location_address $location_zip"; ?>" target="_blank">
<i class="fa fa-fw fa-map-marker-alt text-secondary ml-1 mr-2"></i><?php echo $location_address; ?>
<div class="ml-4"><?php echo "$location_city $location_state $location_zip"; ?></div>
<div><i class="fa fa-fw ml-1 mr-2"></i><?php echo "$location_city $location_state $location_zip"; ?></div>
</a>
</div>
<?php }