Fixed owners header font family too

This commit is contained in:
Brian Vaughn
2019-04-04 13:52:53 -07:00
parent 43782e6696
commit 64b0fd8ecd
2 changed files with 5 additions and 1 deletions
@@ -27,6 +27,10 @@
border-top: 1px solid var(--color-border);
}
.OwnersHeader {
font-family: var(--font-family-sans);
}
.Component,
.Owner {
overflow: hidden;
@@ -184,7 +184,7 @@ function InspectedElementView({
{ownerStack.length === 0 && owners !== null && owners.length > 0 && (
<div className={styles.Owners}>
<div>owner stack</div>
<div className={styles.OwnersHeader}>owner stack</div>
{owners.map(owner => (
<OwnerView
key={owner.id}