summaryrefslogtreecommitdiffhomepage
path: root/gui/src
diff options
context:
space:
mode:
Diffstat (limited to 'gui/src')
-rw-r--r--gui/src/renderer/components/LocationList.tsx8
1 files changed, 7 insertions, 1 deletions
diff --git a/gui/src/renderer/components/LocationList.tsx b/gui/src/renderer/components/LocationList.tsx
index b3396fb578..56b718c273 100644
--- a/gui/src/renderer/components/LocationList.tsx
+++ b/gui/src/renderer/components/LocationList.tsx
@@ -215,6 +215,12 @@ const StyledSpecialLocationCellButton = styled(Cell.CellButton)({
paddingLeft: '18px',
});
+const StyledSpecialLocationCellLabel = styled(Cell.Label)({
+ fontFamily: 'Open Sans',
+ fontWeight: 'normal',
+ fontSize: '16px',
+});
+
const StyledSpecialLocationIcon = styled(Cell.Icon)({
marginRight: '8px',
});
@@ -236,7 +242,7 @@ export class SpecialLocation<T> extends Component<ISpecialLocationProps<T>> {
height={24}
width={24}
/>
- <Cell.Label>{this.props.children}</Cell.Label>
+ <StyledSpecialLocationCellLabel>{this.props.children}</StyledSpecialLocationCellLabel>
</StyledSpecialLocationCellButton>
);
}