aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorViktor Vorona <viktor.vorona@sonarsource.com>2024-01-18 16:21:00 +0100
committersonartech <sonartech@sonarsource.com>2024-01-19 20:02:56 +0000
commit9a023ce04e17a70b06d84d7587f73970fa6f36e2 (patch)
tree26aea6902e52585cfa87d33415a8ce1e7454de3f
parent1cbb7ea53e77469cd1c02cdd08cdb86ae43f61a8 (diff)
downloadsonarqube-9a023ce04e17a70b06d84d7587f73970fa6f36e2.tar.gz
sonarqube-9a023ce04e17a70b06d84d7587f73970fa6f36e2.zip
SONAR-20995 Widen the scrollable area for Issues list
-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>