fix(helpdesk): wrap team dashboard content in single container for correct padding
All dashboard content (period selector, states, KPIs, table) now sits inside one wrapper div as a direct child of section, so Core's padding-inline rule applies consistently. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -37,6 +37,7 @@ $periodLabels = [
|
|||||||
require templatePath('partials/app-flash.phtml');
|
require templatePath('partials/app-flash.phtml');
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
<div class="helpdesk-team-dashboard">
|
||||||
<div class="helpdesk-segment-control" id="team-period-selector">
|
<div class="helpdesk-segment-control" id="team-period-selector">
|
||||||
<?php foreach ($periods as $p): ?>
|
<?php foreach ($periods as $p): ?>
|
||||||
<input type="radio" name="team-period" id="team-period-<?php e($p); ?>" value="<?php e($p); ?>"<?php if ($p === 90): ?> checked<?php endif; ?>>
|
<input type="radio" name="team-period" id="team-period-<?php e($p); ?>" value="<?php e($p); ?>"<?php if ($p === 90): ?> checked<?php endif; ?>>
|
||||||
@@ -106,6 +107,7 @@ $periodLabels = [
|
|||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user