@@ -14,6 +14,7 @@ import Tag from './tags/Tag'
1414import Icon from './icons/Icon'
1515import Constants from 'common/constants'
1616import Button from './base/forms/Button'
17+ import EmptyState from './EmptyState'
1718import Tooltip from './Tooltip'
1819import { withRouter } from 'react-router-dom'
1920import { getDarkMode } from 'project/darkMode'
@@ -313,6 +314,7 @@ class CompareEnvironments extends Component {
313314 < FeatureRow
314315 condensed
315316 isCompareEnv
317+ className = 'border-left-1 ps-2'
316318 fadeEnabled = { fadeEnabled }
317319 fadeValue = { fadeValue }
318320 history = { this . props . history }
@@ -344,9 +346,11 @@ class CompareEnvironments extends Component {
344346 ) }
345347 { ! this . state . isLoading &&
346348 ( ! this . state . changes || ! this . state . changes . length ) && (
347- < div className = 'text-center mt-2' >
348- These environments have no flag differences
349- </ div >
349+ < EmptyState
350+ title = 'No flag differences'
351+ description = 'These environments have identical flag configurations.'
352+ icon = 'checkmark-circle'
353+ />
350354 ) }
351355 { ! this . state . isLoading &&
352356 this . state . changes &&
@@ -390,7 +394,7 @@ class CompareEnvironments extends Component {
390394 </ div >
391395 < Flex className = 'table-column' > </ Flex >
392396 </ Flex >
393- < Flex className = 'flex-row' >
397+ < Flex className = 'flex-row border-left-1 ps-2 ' >
394398 < div
395399 className = 'table-column'
396400 style = { { width : '80px' } }
0 commit comments