From 7daf995e0d78d6f0065d67655668f4832c45bcf0 Mon Sep 17 00:00:00 2001 From: Brandon Millman Date: Wed, 28 Nov 2018 11:10:17 -0800 Subject: fix(website): change instant marketing page styling to non mono font except the 0 in 0x --- .../ts/pages/instant/introducing_0x_instant.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'packages/website/ts/pages/instant') diff --git a/packages/website/ts/pages/instant/introducing_0x_instant.tsx b/packages/website/ts/pages/instant/introducing_0x_instant.tsx index 92183ba98..21377d52e 100644 --- a/packages/website/ts/pages/instant/introducing_0x_instant.tsx +++ b/packages/website/ts/pages/instant/introducing_0x_instant.tsx @@ -12,24 +12,24 @@ export interface Introducing0xInstantProps { export const Introducing0xInstant = (props: Introducing0xInstantProps) => { const isSmallScreen = props.screenWidth === ScreenWidths.Sm; + const zero = ( + + 0 + + ); const title = isSmallScreen ? (
- Introducing
0x Instant + Introducing
+ {zero}x Instant
) : ( -
Introducing 0x Instant
+
Introducing {zero}x Instant
); return (
- + {title} -- cgit