SASS & CodeKit update

Malaxo

Erfahrenes Mitglied
Hallo Zusammen

Ich benutze CodeKit für SASS Files. Ich bin noch ziemlich SASS Anfänger.
Nun hat es für CodeKit ein Update gegeben und jetzt wird bei mir aus: width: 33.3333% -> width: 34.1192%

CSS:
> li
        {
            position: relative;

            @include block-grid(4 of 12);

            padding-left: 20px;
            margin-bottom: 30px;

Block-Grid.scss
CSS:
@mixin block-grid($span: $columns of $container-columns, $inner-flex-padding: false)
{
    // ***unset** the $fg-gutter
    $fg-gutter: 0em;

    @include span-columns($span, block-collapse);

    @include omega(nth($span, 1) + n);

    @if ($inner-flex-padding == true) {
        @include pad( 0 #{flex-gutter()} );
    }

    // **reset** the $fg-gutter
    $fg-gutter: $gutter;
}

Ich vermute es hat mit dem Update von CodeKit zu tun, da ja die SASS Files unverändert sind und nur das compilierte .css File anders ist.

Also neben dieser Prozentänderung, hab ich jetzt noch z.B.: anstatt white -> ffffff im CSS. Dies ist ja nicht schlimm aber die Prozentänderung finde ich nicht raus.
Hat jemand eine Idee? Hier noch Changelog von CodeKit:
http://incident57.com/codekit/versionhistory.html
 

Neue Beiträge

Zurück