Skip to content
This repository has been archived by the owner on Jul 14, 2023. It is now read-only.

Commit

Permalink
Update clearfix output in the documentation
Browse files Browse the repository at this point in the history
The output was not what the current version outputs. The clearfix has changed in bourbon and the zoom:1 is no longer there
  • Loading branch information
jamierytlewski authored and Tyson Gach committed Mar 5, 2016
1 parent 95ef16a commit 195a00a
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions app/assets/stylesheets/grid/_outer-container.scss
Expand Up @@ -13,19 +13,15 @@
///
/// @example css - CSS Output
/// .element {
/// *zoom: 1;
/// max-width: 100%;
/// margin-left: auto;
/// margin-right: auto;
/// }
///
/// .element:before, .element:after {
/// content: " ";
/// display: table;
/// }
///
/// .element:after {
/// .element::after {
/// clear: both;
/// content: "";
/// display: table;
/// }

@mixin outer-container($local-max-width: $max-width) {
Expand Down

1 comment on commit 195a00a

@jmdwebsites
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Doesn't clearfix use display: block? Not display: table

Please sign in to comment.