Skip to content

Instantly share code, notes, and snippets.

View Ansimorph's full-sized avatar

Björn Ganslandt Ansimorph

View GitHub Profile

Keybase proof

I hereby claim:

  • I am ansimorph on github.
  • I am ansimorph (https://keybase.io/ansimorph) on keybase.
  • I have a public key ASBLeh__oc8soThg8VXzRS1u_C1RbHbP82zBXA_-VxPGTQo

To claim this, I am signing this object:

@Ansimorph
Ansimorph / convert-px-to-rem.sh
Last active July 11, 2018 07:39
Convert all px units to rem and divide them by 10
find ./ -name "*.scss" -exec perl -p -i -e 's/(\d+)px/($1\/10).rem/ge' {} \;