From 888f847d9e1e9d8ef9495aa9cf16342a14808101 Mon Sep 17 00:00:00 2001 From: Jonathan Reinink Date: Thu, 3 Aug 2017 08:17:02 -0400 Subject: [PATCH] Add responsive helpers to position. --- src/utilities/position.less | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/utilities/position.less b/src/utilities/position.less index 268779cfe..f0496f176 100644 --- a/src/utilities/position.less +++ b/src/utilities/position.less @@ -9,3 +9,16 @@ .pin-y { .pin-t; .pin-b; } .pin-x { .pin-l; .pin-r; } .pin { .pin-y; .pin-x; width: 100%; height: 100%; } + +.responsive({ + &fixed { .fixed; } + &absolute { .absolute; } + &relative { .relative; } + &pin-t { .pin-t; } + &pin-r { .pin-r; } + &pin-b { .pin-b; } + &pin-l { .pin-l; } + &pin-y { .pin-y; } + &pin-x { .pin-x; } + &pin { .pin; } +});