Skip to content

Instantly share code, notes, and snippets.

@BartoszBilejczyk
Last active January 20, 2021 10:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BartoszBilejczyk/9027788969da2e31f9deae692e5007cf to your computer and use it in GitHub Desktop.
Save BartoszBilejczyk/9027788969da2e31f9deae692e5007cf to your computer and use it in GitHub Desktop.
// styles/product-specific/_facebook-variables.scss
$colors: (
product-primary-light: lighten(#415993, 4%),
product-primary: #415993,
product-primary-dark: darken(#415993, 4%),
product-accent: #3C3C3C,
product-accent-dark: darken(#3C3C3C, 4%),
product-text-on-light: #111,
product-background: #FFFFFF
);
$local-vars: (
logo: (
width: 150px
),
button: (
box-shadow: none,
background: #1877F2,
border: none,
border-radius: 6px,
padding: 12px 24px,
color: white
)
);
$base-border-radius: 8px;
$global-font-name: 'Roboto';
$font-faces-config: (
300: 'Light',
400: 'Regular',
500: 'Medium',
600: 'Bold',
700: 'Black',
);
// config/product-specific/facebook.js
const config = {
products: [
{
id: 1,
description: 'Add photos and share them with your' +
' friends. Become an influencer in your community.',
title: 'Instagram',
url: 'https://instagram.com'
},
{
id: 2,
description: 'Create campaigns and manage ads through' +
' one, user-friendly dashboard',
title: 'Facebook Ads Manager',
url: 'https://facebook.com/adsmanager'
}
]
};
export default config;
// add assets to assets/product-specific/facebook
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment