getdave / Tanlinell

Boilerplate Wordpress theme for rapid development of new WP themes. Based on the great work of the _s ("Underscore") theme.
GNU General Public License v2.0
6 stars 2 forks source link

Usage of #allgridclasses #197

Closed getdave closed 10 years ago

getdave commented 11 years ago

Line 112 of _grid.scss is still referencing #{$allGridClasses}.

@if ($is-oldie == true) {
    .no-js {
        #{$allGridClasses},
        .gc {
            float: none;
            width: 100%;
        }
    }
}

Update to

@if ($is-oldie == true) {
    .no-js {
        .gc {
            float: none !important;
            width: 100% !important;
        }
    }
}