diff options
Diffstat (limited to 'packages')
-rw-r--r-- | packages/website/ts/@next/pages/instant/config_generator_address_input.tsx | 6 | ||||
-rw-r--r-- | packages/website/ts/@next/pages/launch_kit.tsx | 35 |
2 files changed, 3 insertions, 38 deletions
diff --git a/packages/website/ts/@next/pages/instant/config_generator_address_input.tsx b/packages/website/ts/@next/pages/instant/config_generator_address_input.tsx index 01453d445..23cdfcf7f 100644 --- a/packages/website/ts/@next/pages/instant/config_generator_address_input.tsx +++ b/packages/website/ts/@next/pages/instant/config_generator_address_input.tsx @@ -6,7 +6,7 @@ import styled from 'styled-components'; import { colors } from 'ts/style/colors'; import { Container } from 'ts/components/ui/container'; -import { Text } from 'ts/components/ui/text'; + import { Paragraph } from 'ts/@next/components/text'; export interface ConfigGeneratorAddressInputProps { @@ -24,7 +24,6 @@ export interface InputProps { width?: string; fontSize?: string; fontColor?: string; - border?: string; padding?: string; placeholderColor?: string; placeholder?: string; @@ -42,7 +41,6 @@ export class ConfigGeneratorAddressInput extends React.Component< public render(): React.ReactNode { const { errMsg } = this.state; const hasError = !_.isEmpty(errMsg); - const border = hasError ? '1px solid red' : undefined; return ( <Container height="80px"> <Input @@ -87,4 +85,4 @@ export const Input = styled(PlainInput)` color: #333333; opacity: 0.5; } -`;
\ No newline at end of file +`; diff --git a/packages/website/ts/@next/pages/launch_kit.tsx b/packages/website/ts/@next/pages/launch_kit.tsx index 74c620cf4..e02eac644 100644 --- a/packages/website/ts/@next/pages/launch_kit.tsx +++ b/packages/website/ts/@next/pages/launch_kit.tsx @@ -1,6 +1,5 @@ import * as _ from 'lodash'; import * as React from 'react'; -import AnchorLink from 'react-anchor-link-smooth-scroll'; import styled from 'styled-components'; import {Hero} from 'ts/@next/components/hero'; @@ -10,7 +9,7 @@ import { Button } from 'ts/@next/components/button'; import { Icon } from 'ts/@next/components/icon'; import { SiteWrap } from 'ts/@next/components/siteWrap'; -import {Section, WrapSticky} from 'ts/@next/components/newLayout'; +import {Section} from 'ts/@next/components/newLayout'; const offersData = [ { @@ -117,35 +116,3 @@ const HeroActions = () => ( interface SectionProps { isNotRelative?: boolean; } - -const SectionWrap = styled.div<SectionProps>` - position: ${props => !props.isNotRelative && 'relative'}; - - & + & { - padding-top: 60px; - margin-top: 60px; - } - - & + &:before { - content: ''; - position: absolute; - top: 0; - left: 0; - height: 1px; - background-color: #3d3d3d; - } - - @media (min-width: 768px) { - & + &:before { - width: 100vw; - } - } - - @media (max-width: 768px) { - text-align: left; - - & + &:before { - width: 100%; - } - } -`; |