-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[BUG] Alerts and Findings overview table should have even height open…
…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
1 parent
79e7164
commit 2fe52be
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
public/pages/Overview/components/Widgets/WidgetContainer.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
} | ||
} | ||
} | ||
} |