How to use the bs-css/src/Css.js.black function in bs-css

To help you get started, we’ve selected a few bs-css examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github iwilsonq / gatsby-starter-reasonml / re / Post.bs.js View on Github external
/* :: */[
                Css.textDecorationColor(Css.red),
                /* [] */0
              ]
            ]),
        /* [] */0
      ]
    ]);

var h2 = Css.style(/* :: */[
      Css.color(Css.red),
      /* [] */0
    ]);

var p = Css.style(/* :: */[
      Css.color(Css.black),
      /* [] */0
    ]);

var date = Css.style(/* :: */[
      Css.color(Css.darkgray),
      /* [] */0
    ]);

var Styles = /* module */[
  /* article */article,
  /* link */link,
  /* h2 */h2,
  /* p */p,
  /* date */date
];