Commit 927cbd61 authored by Scott Hampton's avatar Scott Hampton

Fix MR widget alignment

Adjust the left-padding for the MR widget
reports children and sub-children to be
properly aligned with their parent.
parent 6298ed71
...@@ -66,8 +66,8 @@ export default { ...@@ -66,8 +66,8 @@ export default {
}, },
listClasses() { listClasses() {
return { return {
'gl-pl-7': this.nestedLevel === 1, 'gl-pl-9': this.nestedLevel === 1,
'gl-pl-9': this.nestedLevel === 2, 'gl-pl-11-5': this.nestedLevel === 2,
}; };
}, },
}, },
......
...@@ -88,8 +88,8 @@ export default { ...@@ -88,8 +88,8 @@ export default {
}, },
listClasses() { listClasses() {
return { return {
'gl-pl-7': this.nestedLevel === 1, 'gl-pl-9': this.nestedLevel === 1,
'gl-pl-8': this.nestedLevel === 2, 'gl-pl-11-5': this.nestedLevel === 2,
}; };
}, },
}, },
......
...@@ -51,7 +51,7 @@ export default { ...@@ -51,7 +51,7 @@ export default {
if (!this.nestedSummary) { if (!this.nestedSummary) {
return ['gl-px-5']; return ['gl-px-5'];
} }
return ['gl-pl-7', 'gl-pr-5', { 'gl-bg-gray-10': this.statusIcon === ICON_WARNING }]; return ['gl-pl-9', 'gl-pr-5', { 'gl-bg-gray-10': this.statusIcon === ICON_WARNING }];
}, },
statusIconSize() { statusIconSize() {
if (!this.nestedSummary) { if (!this.nestedSummary) {
......
---
title: Fix test report merge request widget summary and issues alignment
merge_request:
author:
type: fixed
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment