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 --- packages/website/ts/components/ui/text.tsx | 2 +- .../ts/pages/instant/introducing_0x_instant.tsx | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/packages/website/ts/components/ui/text.tsx b/packages/website/ts/components/ui/text.tsx index c13e21913..87239a021 100644 --- a/packages/website/ts/components/ui/text.tsx +++ b/packages/website/ts/components/ui/text.tsx @@ -3,7 +3,7 @@ import { darken } from 'polished'; import * as React from 'react'; import { styled } from 'ts/style/theme'; -export type TextTag = 'p' | 'div' | 'span' | 'label' | 'h1' | 'h2' | 'h3' | 'h4' | 'i'; +export type TextTag = 'p' | 'div' | 'span' | 'label' | 'h1' | 'h2' | 'h3' | 'h4' | 'i' | 'span'; export interface TextProps { className?: string; 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 v1.2.3