From 9489daa46899a268725300eb8d208575aca6f0be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Mon, 30 Mar 2020 22:06:11 +0100 Subject: [PATCH] fix(ui): tweak grid header style --- ui/src/Components/Grid/AlertGrid/Grid.js | 52 ++++++++++++------------ ui/src/Styles/Components/AlertGrid.scss | 4 ++ 2 files changed, 29 insertions(+), 27 deletions(-) diff --git a/ui/src/Components/Grid/AlertGrid/Grid.js b/ui/src/Components/Grid/AlertGrid/Grid.js index bf7687023..6ffe147af 100644 --- a/ui/src/Components/Grid/AlertGrid/Grid.js +++ b/ui/src/Components/Grid/AlertGrid/Grid.js @@ -118,32 +118,30 @@ const Grid = observer( return ( {alertStore.data.grids.length > 1 && ( -
- {grid.alertGroups.length > 1 && ( - - - - - - )} +
+ + + + + diff --git a/ui/src/Styles/Components/AlertGrid.scss b/ui/src/Styles/Components/AlertGrid.scss index 756dd044b..4347eb82d 100644 --- a/ui/src/Styles/Components/AlertGrid.scss +++ b/ui/src/Styles/Components/AlertGrid.scss @@ -6,3 +6,7 @@ transition-duration: 0.4s; transition-timing-function: ease; } + +.components-grid-swimlane { + background-color: $dark; +}