From 2b61e234c37c40fe19fed54e610c92d60a25ff95 Mon Sep 17 00:00:00 2001 From: fen Date: Sun, 27 Oct 2013 16:59:32 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A5=E5=85=85=E9=81=97=E6=BC=8F=20mixin=20?= =?UTF-8?q?=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- admin/scss/_mixin.scss | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 admin/scss/_mixin.scss diff --git a/admin/scss/_mixin.scss b/admin/scss/_mixin.scss new file mode 100644 index 00000000..52924c9a --- /dev/null +++ b/admin/scss/_mixin.scss @@ -0,0 +1,5 @@ +@mixin calc($property, $expression) { + #{$property}: -moz-calc(#{$expression}); + #{$property}: -webkit-calc(#{$expression}); + #{$property}: calc(#{$expression}); +} \ No newline at end of file