aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--server/sonar-web/src/main/js/apps/issues/components/IssuesApp.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/server/sonar-web/src/main/js/apps/issues/components/IssuesApp.tsx b/server/sonar-web/src/main/js/apps/issues/components/IssuesApp.tsx
index 22fbcea6e2b..3856e8d3bdd 100644
--- a/server/sonar-web/src/main/js/apps/issues/components/IssuesApp.tsx
+++ b/server/sonar-web/src/main/js/apps/issues/components/IssuesApp.tsx
@@ -1232,8 +1232,8 @@ export class App extends React.PureComponent<Props, State> {
{({ top }) => (
<StyledIssueWrapper
className={classNames('it__layout-page-main-inner sw-pt-0', {
- 'sw-overflow-y-auto': !(openIssue && openRuleDetails),
- 'details-open': openIssue && openRuleDetails,
+ 'sw-overflow-y-auto sw-pl-12': !(openIssue && openRuleDetails),
+ 'details-open sw-ml-12': openIssue && openRuleDetails,
})}
style={{ height: `calc((100vh - ${top + LAYOUT_FOOTER_HEIGHT}px)` }}
>
@@ -1340,7 +1340,7 @@ export class App extends React.PureComponent<Props, State> {
{this.renderSide(openIssue)}
- <main className="sw-relative sw-ml-12 sw-flex-1 sw-min-w-0">{this.renderPage()}</main>
+ <main className="sw-relative sw-flex-1 sw-min-w-0">{this.renderPage()}</main>
</div>
</PageContentFontWrapper>
</LargeCenteredLayout>