diff --git a/src/panel-triggers/components/Problems.tsx b/src/panel-triggers/components/Problems.tsx index a625dbc..cceafb6 100644 --- a/src/panel-triggers/components/Problems.tsx +++ b/src/panel-triggers/components/Problems.tsx @@ -383,7 +383,7 @@ class ProblemDetails extends PureComponent { const rootWidth = this.props.rootWidth; const displayClass = this.state.show ? 'show' : ''; const wideLayout = rootWidth > 1000; - const compactStatusBar = rootWidth < 800; + const compactStatusBar = rootWidth < 800 || problem.acknowledges && wideLayout && rootWidth < 1200; return (
diff --git a/src/sass/_panel-problems.scss b/src/sass/_panel-problems.scss index e555994..a88a6b8 100644 --- a/src/sass/_panel-problems.scss +++ b/src/sass/_panel-problems.scss @@ -198,7 +198,7 @@ } .problem-tags { - padding-top: 0.6rem; + padding-top: 0.8rem; padding-bottom: 0.8rem; margin-top: auto; }