From 596dfc31480f836168218f932c55497d8b13d45b Mon Sep 17 00:00:00 2001 From: Evan Theurer Date: Fri, 25 Apr 2014 15:48:07 +0200 Subject: [PATCH] Required mixins. --- src/styles/global/_mixins.scss | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/styles/global/_mixins.scss diff --git a/src/styles/global/_mixins.scss b/src/styles/global/_mixins.scss new file mode 100644 index 00000000..ff34e400 --- /dev/null +++ b/src/styles/global/_mixins.scss @@ -0,0 +1,23 @@ + +@mixin breakpt($pt) { + @media (max-width: $pt) { + @content; + } +} + +@mixin user-select($select) { + -khtml-user-select: $select; + -moz-user-select: $select; + -ms-user-select: $select; + -webkit-user-select: $select; + user-select: $select; +} + +@mixin touch-callout($callout) { + -webkit-touch-callout: $callout; +} + +@mixin box-shadow($shadow) { + -webkit-box-shadow: $shadow; + box-shadow: $shadow; +}