Remove facebook from credits page
This commit is contained in:
		@@ -29,10 +29,6 @@ const CREDIT_SERVICES_OPTIONS: ServiceOptionMetadata[] = [
 | 
			
		||||
        label: 'AWS',
 | 
			
		||||
        name: 'aws',
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
        label: 'Facebook Ads',
 | 
			
		||||
        name: 'facebook_ads',
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
        label: 'Alchemy',
 | 
			
		||||
        name: 'alchemy',
 | 
			
		||||
 
 | 
			
		||||
@@ -40,6 +40,7 @@ export interface FlexProps {
 | 
			
		||||
    isFlex?: boolean;
 | 
			
		||||
    flexBreakpoint?: string;
 | 
			
		||||
    alignItems?: string;
 | 
			
		||||
    justifyContent?: string;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export interface ColumnProps {
 | 
			
		||||
@@ -77,7 +78,8 @@ export const FlexWrap = styled.div<FlexProps>`
 | 
			
		||||
 | 
			
		||||
    @media (min-width: ${props => props.flexBreakpoint || '768px'}) {
 | 
			
		||||
        display: ${props => props.isFlex && 'flex'};
 | 
			
		||||
        justify-content: ${props => props.isFlex && 'space-between'};
 | 
			
		||||
        justify-content: ${props =>
 | 
			
		||||
            props.justifyContent ? props.justifyContent : props.isFlex ? 'space-between' : undefined};
 | 
			
		||||
        align-items: ${props => props.alignItems};
 | 
			
		||||
    }
 | 
			
		||||
`;
 | 
			
		||||
 
 | 
			
		||||
@@ -71,7 +71,7 @@ export class Credits extends React.Component<CreditsProps> {
 | 
			
		||||
                        />
 | 
			
		||||
                    </FlexWrap>
 | 
			
		||||
 | 
			
		||||
                    <FlexWrap>
 | 
			
		||||
                    <FlexWrap justifyContent="center">
 | 
			
		||||
                        <CenteredDefinition
 | 
			
		||||
                            title="Digital Ocean"
 | 
			
		||||
                            titleSize="small"
 | 
			
		||||
@@ -80,15 +80,6 @@ export class Credits extends React.Component<CreditsProps> {
 | 
			
		||||
                            iconSize="medium"
 | 
			
		||||
                            isInline={true}
 | 
			
		||||
                        />
 | 
			
		||||
 | 
			
		||||
                        <CenteredDefinition
 | 
			
		||||
                            title="Facebook Ads"
 | 
			
		||||
                            titleSize="small"
 | 
			
		||||
                            description="Up to $2,000 in ad credits to bootstrap marketing"
 | 
			
		||||
                            icon="facebook_ads"
 | 
			
		||||
                            iconSize="medium"
 | 
			
		||||
                            isInline={true}
 | 
			
		||||
                        />
 | 
			
		||||
                    </FlexWrap>
 | 
			
		||||
                </Section>
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user