Skip to content

Commit

Permalink
Removed right padding
Browse files Browse the repository at this point in the history
  • Loading branch information
mhanoglu committed May 2, 2021
1 parent 961e5fc commit 168957c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Grid/Displayers/ProgressBar.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public function display($style = 'primary', $size = 'sm', $max = 100)
return <<<EOT
<div class="row" style="min-width: 100px;">
<span class="col-sm-3" style="color:#777;">{$this->value}%</span>
<div class="progress progress-$size col-sm-9" style="padding-left: 0;width: 100px;">
<div class="progress progress-$size col-sm-9" style="padding-left: 0;padding-right: 0;width: 100px;">
<div class="progress-bar $style" role="progressbar" aria-valuenow="{$this->value}" aria-valuemin="0" aria-valuemax="$max" style="width: {$this->value}%">
</div>
</div>
Expand Down

0 comments on commit 168957c

Please sign in to comment.