From 5124edd5f5a8bc946ada729286422bd5095dd70b Mon Sep 17 00:00:00 2001 From: CJ Patoilo Date: Fri, 25 Dec 2015 22:58:56 -0300 Subject: [PATCH] utility created --- sass/_Utility.sass | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 sass/_Utility.sass diff --git a/sass/_Utility.sass b/sass/_Utility.sass new file mode 100644 index 0000000..535144f --- /dev/null +++ b/sass/_Utility.sass @@ -0,0 +1,22 @@ + +// Utility +// –––––––––––––––––––––––––––––––––––––––––––––––––– + +// Float either direction +.float-right + float: right + +.float-left + float: left + +// Clear a float with .clearfix +.clearfix + *zoom: 1 + + &:after, + &:before + content: '' + display: table + + &:after + clear: both