diff --git a/src/components/flow/Cell/index.tsx b/src/components/flow/Cell/index.tsx index bd9f8c59..a23ea07f 100644 --- a/src/components/flow/Cell/index.tsx +++ b/src/components/flow/Cell/index.tsx @@ -1,19 +1,22 @@ import React, { FC } from 'react'; import * as styles from './styles.scss'; +import classNames = require("classnames"); interface IProps { height?: number; width?: number; title?: string; + is_hero?: boolean; } const Cell: FC = ({ width = 1, height = 1, title, + is_hero, }) => (
( - +
diff --git a/src/index.html b/src/index.html index d7db637b..c22d6be0 100644 --- a/src/index.html +++ b/src/index.html @@ -4,7 +4,7 @@ - + <%= htmlWebpackPlugin.options.title %> diff --git a/src/styles/colors.scss b/src/styles/colors.scss index 959aedb2..d1a7fc9a 100644 --- a/src/styles/colors.scss +++ b/src/styles/colors.scss @@ -4,7 +4,8 @@ $color_blue: complement($color_red); //$color_yellow: complement($color_red); //$color_yellow: yellow; -$main_bg_color: #161616; +//$main_bg_color: #161616; +$main_bg_color: #111111; $main_text_color: white; $content_bg_color: #222222; diff --git a/src/styles/variables.scss b/src/styles/variables.scss index fe7bbc66..faff35e6 100644 --- a/src/styles/variables.scss +++ b/src/styles/variables.scss @@ -12,6 +12,7 @@ $input_height: 32px; $input_radius: 2px; $info_height: 24px; +$font: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; @mixin outer_shadow() { box-shadow: inset transparentize(white, 0.95) 0 1px,