Skip to content

Commit

Permalink
Merge pull request #5309 from mhanoglu/bug/grid-progressbar
Browse files Browse the repository at this point in the history
Removed right padding
  • Loading branch information
jxlwqq committed May 3, 2021
2 parents 75c716b + 168957c commit 0c661b2
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 0c661b2

Please sign in to comment.