diff options
author | Fabio Berger <me@fabioberger.com> | 2018-06-06 18:39:15 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-06-06 18:39:15 +0800 |
commit | 2f2724dff50ccf4bc897b5ef6dbc4685a1e8352d (patch) | |
tree | 72eceb5add3c06650c7dfca03f96bbd9dde19c40 /packages/website/ts/pages | |
parent | 271fa26890c7d86fe516b51d653a308b2789d2c2 (diff) | |
download | dexon-sol-tools-2f2724dff50ccf4bc897b5ef6dbc4685a1e8352d.tar dexon-sol-tools-2f2724dff50ccf4bc897b5ef6dbc4685a1e8352d.tar.gz dexon-sol-tools-2f2724dff50ccf4bc897b5ef6dbc4685a1e8352d.tar.bz2 dexon-sol-tools-2f2724dff50ccf4bc897b5ef6dbc4685a1e8352d.tar.lz dexon-sol-tools-2f2724dff50ccf4bc897b5ef6dbc4685a1e8352d.tar.xz dexon-sol-tools-2f2724dff50ccf4bc897b5ef6dbc4685a1e8352d.tar.zst dexon-sol-tools-2f2724dff50ccf4bc897b5ef6dbc4685a1e8352d.zip |
Fix remaining tslint issues
Diffstat (limited to 'packages/website/ts/pages')
-rw-r--r-- | packages/website/ts/pages/landing/landing.tsx | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/packages/website/ts/pages/landing/landing.tsx b/packages/website/ts/pages/landing/landing.tsx index 053310b0e..68c300454 100644 --- a/packages/website/ts/pages/landing/landing.tsx +++ b/packages/website/ts/pages/landing/landing.tsx @@ -222,17 +222,6 @@ export class Landing extends React.Component<LandingProps, LandingState> { } private _renderHero(): React.ReactNode { const isSmallScreen = this.state.screenWidth === ScreenWidths.Sm; - const buttonLabelStyle: React.CSSProperties = { - textTransform: 'none', - fontSize: isSmallScreen ? 12 : 14, - fontWeight: 400, - }; - const lightButtonStyle: React.CSSProperties = { - borderRadius: 6, - border: '1px solid #D8D8D8', - lineHeight: '33px', - height: 38, - }; const left = 'col lg-col-7 md-col-7 col-12 lg-pl4 md-pl4 sm-pl0 sm-px3 sm-center'; return ( <div className="clearfix py4" style={{ backgroundColor: colors.heroGrey }}> @@ -749,17 +738,6 @@ export class Landing extends React.Component<LandingProps, LandingState> { } private _renderCallToAction(): React.ReactNode { const isSmallScreen = this.state.screenWidth === ScreenWidths.Sm; - const buttonLabelStyle: React.CSSProperties = { - textTransform: 'none', - fontSize: 15, - fontWeight: 400, - }; - const lightButtonStyle: React.CSSProperties = { - borderRadius: 6, - border: `1px solid ${colors.grey500}`, - lineHeight: '33px', - height: 49, - }; const callToActionClassNames = 'lg-pr3 md-pr3 lg-right-align md-right-align sm-center sm-px3 h4 lg-table-cell md-table-cell'; return ( |