summaryrefslogtreecommitdiffhomepage
path: root/gui/src
diff options
context:
space:
mode:
authorOskar Nyberg <oskar@mullvad.net>2020-08-26 16:11:38 +0200
committerOskar Nyberg <oskar@mullvad.net>2020-08-27 12:16:55 +0200
commit6e94304db84d6347ba281bc36ffa43400b5333e2 (patch)
treec17d5b53ae17958b4f60a49c8d10a5a4d7ecf6f9 /gui/src
parented18477f0f47342b5a2ec46f1be7d442157874fd (diff)
downloadmullvadvpn-6e94304db84d6347ba281bc36ffa43400b5333e2.tar.xz
mullvadvpn-6e94304db84d6347ba281bc36ffa43400b5333e2.zip
Make special location cell text non-bold
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>
);
}