Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
carlbennett committed Jun 27, 2021
1 parent 2b34853 commit 28cf4f6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/templates/User/View.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,9 @@ require('./header.inc.phtml'); ?>
<p class="mb-0"><?=$description?></p>
</div>
<? } ?>
<div class="row">
<div class="row justify-content-center">
<? if (!empty($documents)) { ?>
<div class="col mb-3">
<div class="col-md-auto mb-3">
<h3>Documents</h3>
<ul>
<? foreach ($documents as $document) { ?>
Expand All @@ -165,7 +165,7 @@ require('./header.inc.phtml'); ?>
</div>
<? } ?>
<? if (!empty($news_posts)) { ?>
<div class="col mb-3">
<div class="col-md-auto mb-3">
<h3>News Posts</h3>
<ul>
<? foreach ($news_posts as $news_post) { ?>
Expand All @@ -175,7 +175,7 @@ require('./header.inc.phtml'); ?>
</div>
<? } ?>
<? if (!empty($packets)) { ?>
<div class="col mb-3">
<div class="col-md-auto mb-3">
<h3>Packets</h3>
<ul>
<? foreach ($packets as $packet) { ?>
Expand All @@ -185,7 +185,7 @@ require('./header.inc.phtml'); ?>
</div>
<? } ?>
<? if (!empty($servers)) { ?>
<div class="col mb-3">
<div class="col-md-auto mb-3">
<h3>Servers</h3>
<ul>
<? foreach ($servers as $server) { ?>
Expand Down

0 comments on commit 28cf4f6

Please sign in to comment.