diff options
| author | Greg Roach <fisharebest@webtrees.net> | 2019-08-25 08:18:15 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@webtrees.net> | 2019-08-25 18:21:47 +0100 |
| commit | 349e0d4bf4d43f0db39d3e2942f73c56c2f7f9c7 (patch) | |
| tree | dca358241a9602fe2310934bd62cb60619f6de02 /resources/views | |
| parent | 714206b0d3cb4d6e2d2f82e4c29dd3c69a6bdc44 (diff) | |
| download | webtrees-349e0d4bf4d43f0db39d3e2942f73c56c2f7f9c7.tar.gz webtrees-349e0d4bf4d43f0db39d3e2942f73c56c2f7f9c7.tar.bz2 webtrees-349e0d4bf4d43f0db39d3e2942f73c56c2f7f9c7.zip | |
Use classes instead of inline styles
Diffstat (limited to 'resources/views')
| -rw-r--r-- | resources/views/modules/compact-chart/chart.phtml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/resources/views/modules/compact-chart/chart.phtml b/resources/views/modules/compact-chart/chart.phtml index ccb26c9411..a92a48d124 100644 --- a/resources/views/modules/compact-chart/chart.phtml +++ b/resources/views/modules/compact-chart/chart.phtml @@ -141,15 +141,15 @@ </td> <td></td> <td colspan="3"> - <table width="100%"> + <table class="w-100"> <tr> - <td width='25%'> + <td class="w-25"> <?= view('modules/compact-chart/arrow-left', ['module' => $module, 'individual' => $ancestors->get(2)]) ?> </td> - <td> + <td class="w-50"> <?= view('modules/compact-chart/individual', ['module' => $module, 'individual' => $ancestors->get(1)]) ?> </td> - <td width='25%'> + <td class="w-25"> <?= view('modules/compact-chart/arrow-right', ['module' => $module, 'individual' => $ancestors->get(3)]) ?> </td> </tr> |
