Pretty usable.
[wolnelektury.git] / src / wolnelektury / static / 2021 / css / utils / bourbon / library / _clearfix.scss
diff --git a/src/wolnelektury/static/2021/css/utils/bourbon/library/_clearfix.scss b/src/wolnelektury/static/2021/css/utils/bourbon/library/_clearfix.scss
deleted file mode 100644 (file)
index d8ccc42..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-@charset "UTF-8";
-
-/// Provides an easy way to include a clearfix for containing floats.
-///
-/// @link https://goo.gl/yP5hiZ
-///
-/// @example scss
-///   .element {
-///     @include clearfix;
-///   }
-///
-///   // CSS Output
-///   .element::after {
-///     clear: both;
-///     content: "";
-///     display: block;
-///   }
-
-@mixin clearfix {
-  &::after {
-    clear: both;
-    content: "";
-    display: block;
-  }
-}