Files
Martin 4696b7fc3d Fix horizontal scrollbar in device list always visible (#13653)
Rearranging the action icons introduced an overflow which forced the horizontal scrollbar to be always visible.
2022-01-06 08:58:12 -06:00

10 lines
274 B
PHP

<div class="container-fluid" style="padding-left: 0; padding-right: 0;">
@foreach($actions as $row)
<div>
@foreach($row as $action)
@include('device.action-icon', $action)
@endforeach
</div>
@endforeach
</div>