Skip to content

Instantly share code, notes, and snippets.

@maarekj
maarekj / buttons.less
Created April 18, 2012 10:06
modified buttons.less/bootstrap supporting the buttons as mixins
// BUTTON STYLES
// -------------
// Base styles
// --------------------------------------------------
// Core
.btn {
display: inline-block;
@maarekj
maarekj / ComponentUsingHelmet.re
Created May 8, 2020 11:09
react-helmet binding for bucklescript
[@react.component]
let make = () => {
<div>
<Helmet title="My Title" description="My Description" />
<div> {React.string("My component")} </div>
</div>
};