sass-planifolia

Vanilla Sass helper functions
git clone https://git.ce9e.org/sass-planifolia.git

commit
4e25bb62ecf165993ccdd42b13c9f50f740365b5
parent
8496a7f8e5d57d36fdccaf2193833238da1def98
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2022-05-03 20:17
rm clearfix module

no longer relevant

Diffstat

M README.md 1 -
D sass/clearfix.scss 17 -----------------

2 files changed, 0 insertions, 18 deletions


diff --git a/README.md b/README.md

@@ -15,7 +15,6 @@ The following modules are included:
   15    15     contrast](https://www.w3.org/TR/WCAG20/#contrast-ratiodef) functions
   16    16 -   **color** for CIELAB/CIELUV based color functions (with support for
   17    17     [HSLuv](http://www.hsluv.org/))
   18    -1 -   **clearfix** for compass compatible clearfix mixins
   19    18 -   **grid** for simple grid mixins
   20    19 
   21    20 These modules can be imported individually (color depends on math though).

diff --git a/sass/clearfix.scss b/sass/clearfix.scss

@@ -1,17 +0,0 @@
    1    -1 ////
    2    -1 /// @group clearfix
    3    -1 ////
    4    -1 
    5    -1 /// Default clearfix ([source](http://www.quirksmode.org/blog/archives/2005/03/clearing_floats.html))
    6    -1 @mixin clearfix {
    7    -1   overflow: hidden;
    8    -1 }
    9    -1 
   10    -1 /// Alternative clearfix that does not use `overflow: hidden` ([source](http://nicolasgallagher.com/micro-clearfix-hack/))
   11    -1 @mixin pie-clearfix {
   12    -1   &::after {
   13    -1     clear: both;
   14    -1     content: ' ';
   15    -1     display: block;
   16    -1   }
   17    -1 }