fix(ui): add border around grid swimlane

This commit is contained in:
Łukasz Mierzwa
2020-03-31 12:24:32 +01:00
parent 01e2e68810
commit f37932b892
2 changed files with 3 additions and 1 deletions

View File

@@ -161,7 +161,7 @@ const Grid = observer(
return (
<React.Fragment>
{alertStore.data.grids.length > 1 && (
<h5 className="components-grid-swimlane d-flex flex-row justify-content-between rounded px-2 py-1 mx-1 mt-2 mb-0">
<h5 className="components-grid-swimlane d-flex flex-row justify-content-between rounded px-2 py-1 mt-2 mb-0 border border-dark">
<span className="flex-shrink-0 flex-grow-0 ml-0 mr-2">
<FilteringCounterBadge
name="@state"

View File

@@ -9,4 +9,6 @@
.components-grid-swimlane {
background-color: $grid-swimlane-bg;
margin-left: 0.3rem;
margin-right: 0.3rem;
}