Skip to content

Commit

Permalink
[BUG] Alerts and Findings overview table should have even height open…
Browse files Browse the repository at this point in the history
…search-project#250 (opensearch-project#267) (opensearch-project#276)

Signed-off-by: Jovan Cvetkovic <[email protected]>

Signed-off-by: Jovan Cvetkovic <[email protected]>
(cherry picked from commit 8c5246c)

Co-authored-by: Jovan Cvetkovic <[email protected]>
Signed-off-by: AWSHurneyt <[email protected]>
  • Loading branch information
2 people authored and AWSHurneyt committed Oct 12, 2023
1 parent 1da17d3 commit 9bf8324
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
1 change: 1 addition & 0 deletions public/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,4 @@ $euiTextColor: $euiColorDarkestShade !default;
}

@import "./components/Charts/ChartContainer.scss";
@import "./pages/Overview/components/Widgets/WidgetContainer.scss";
25 changes: 25 additions & 0 deletions public/pages/Overview/components/Widgets/WidgetContainer.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
.grid-item {
> div {
height: 100%;
display: flex;
flex-direction: column;

> :nth-child(1) {
flex: 0;
}

> :nth-child(3) {
flex: 1;

> div {
height: 100%;
display: flex;
flex-direction: column;

> :first-child {
flex: 1;
}
}
}
}
}

0 comments on commit 9bf8324

Please sign in to comment.