Change color of quantity measurement badges from red to blue (more like info, less like danger).

This commit is contained in:
Michael Stenta 2020-05-27 09:15:52 -04:00
parent e6ff32c146
commit bfef04abff
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@
<?php foreach ($quantities as $quantity): ?>
<?php extract($quantity); ?>
<li class="field-item list-group-item col-xs-6 col-sm-4 col-md-3 col-lg-2">
<span class="badge"><?php print $value; ?> <?php print $units; ?></span>
<span class="badge alert-info"><?php print $value; ?> <?php print $units; ?></span>
<?php print $label; ?> <?php print $measure; ?>
</li>
<?php endforeach; ?>