aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFred Carlsen <fred@sjelfull.no>2018-12-20 07:24:28 +0800
committerFred Carlsen <fred@sjelfull.no>2018-12-20 07:24:28 +0800
commitca3e0b26c630ace7eecd9d99433f27f5290d3a76 (patch)
treeb235bde2a062bcdda894c81989def8f496b4d8f6
parente6f36938137fa7e2e48e1e97aed8bfa0c3c4aacd (diff)
downloaddexon-sol-tools-ca3e0b26c630ace7eecd9d99433f27f5290d3a76.tar
dexon-sol-tools-ca3e0b26c630ace7eecd9d99433f27f5290d3a76.tar.gz
dexon-sol-tools-ca3e0b26c630ace7eecd9d99433f27f5290d3a76.tar.bz2
dexon-sol-tools-ca3e0b26c630ace7eecd9d99433f27f5290d3a76.tar.lz
dexon-sol-tools-ca3e0b26c630ace7eecd9d99433f27f5290d3a76.tar.xz
dexon-sol-tools-ca3e0b26c630ace7eecd9d99433f27f5290d3a76.tar.zst
dexon-sol-tools-ca3e0b26c630ace7eecd9d99433f27f5290d3a76.zip
Reapply prettier
-rw-r--r--packages/website/ts/@next/components/button.tsx4
-rw-r--r--packages/website/ts/@next/pages/landing.tsx10
2 files changed, 8 insertions, 6 deletions
diff --git a/packages/website/ts/@next/components/button.tsx b/packages/website/ts/@next/components/button.tsx
index baca01a14..675f69308 100644
--- a/packages/website/ts/@next/components/button.tsx
+++ b/packages/website/ts/@next/components/button.tsx
@@ -74,7 +74,9 @@ const ButtonBase =
transition: background-color 0.35s, border-color 0.35s;
// @todo Refactor to use theme props
- ${props => props.bgColor === 'dark' && `
+ ${props =>
+ props.bgColor === 'dark' &&
+ `
background-color: ${colors.brandDark};
color: ${colors.white};
`}
diff --git a/packages/website/ts/@next/pages/landing.tsx b/packages/website/ts/@next/pages/landing.tsx
index c9520f261..4d47fefd9 100644
--- a/packages/website/ts/@next/pages/landing.tsx
+++ b/packages/website/ts/@next/pages/landing.tsx
@@ -1,11 +1,11 @@
import * as React from 'react';
import DocumentTitle from 'react-document-title';
-import {SectionLandingAbout} from 'ts/@next/components/sections/landing/about';
-import {SectionLandingClients} from 'ts/@next/components/sections/landing/clients';
-import {SectionLandingCta} from 'ts/@next/components/sections/landing/cta';
-import {SectionLandingHero} from 'ts/@next/components/sections/landing/hero';
-import {SiteWrap} from 'ts/@next/components/siteWrap';
+import { SectionLandingAbout } from 'ts/@next/components/sections/landing/about';
+import { SectionLandingClients } from 'ts/@next/components/sections/landing/clients';
+import { SectionLandingCta } from 'ts/@next/components/sections/landing/cta';
+import { SectionLandingHero } from 'ts/@next/components/sections/landing/hero';
+import { SiteWrap } from 'ts/@next/components/siteWrap';
import { ModalContact } from 'ts/@next/components/modals/modal_contact';