view sass-extensions/zen-grids/templates/unit-tests/sass/zen-float.scss @ 0:a3750d724105 default tip

initital
author Dirk Wintergruen <dwinter@mpiwg-berlin.mpg.de>
date Tue, 02 Jun 2015 09:16:36 +0200
parents
children
line wrap: on
line source

/**
 * @file
 * Test zen-float()
 */

@import "zen";

#test-zen-float {
  /* Test zen-float() */
  @include zen-float();

  /* Test zen-float() with $zen-float-direction: right */
  $zen-float-direction: right;
  @include zen-float();
  $zen-float-direction: left;

  /* Test zen-float(left) */
  @include zen-float(left);

  /* Test zen-float(left, $reverse-all-floats: TRUE) */
  @include zen-float(left, $reverse-all-floats: TRUE);

  /* Test zen-float(left) with: $zen-reverse-all-floats: TRUE; */
  $zen-reverse-all-floats: TRUE;
  @include zen-float(left);
}