Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am tcoukoulis on github.
  • I am tcoukoulis (https://keybase.io/tcoukoulis) on keybase.
  • I have a public key ASDbAkIla50AJTgCjHI_R5JVVbtNchvS4rj3LaK8jWMQPQo

To claim this, I am signing this object:

@tcoukoulis
tcoukoulis / SassMeister-input.scss
Last active September 15, 2017 04:59
SCSS mixin for font shorthand
// ----
// libsass (v3.5.0.beta.2)
// ----
@mixin font($dimensions, $family, $props: null) {
font: $props $dimensions #{$family};
}
.foo {
@include font(14px, "Monaco, Menlo", null);
}