2016-11-21 2 views

Antwort

0

Bleed ist eine Kombination von negativen und positiven Margen Polsterung. Zurücksetzen sowohl 0 außer Kraft zu setzen:

@include breakpoint($small) { 
    @include span(8 last); 
    margin: 0; 
    padding: 0; 
} 

Im Allgemeinen versuche ich, durch eine Begrenzung der ursprüngliche Anwendung Unterbrechungsüberschreibungen zu vermeiden. Etwas mehr wie das:

.story4 { 
    @include span(2); 
    background: yellow; 
    height: 80px; 

    // use your own tools to create max-width breakpoints... 
    // this limits the bleed, so we don't have to override it later. 
    @media (max-width: $small) { 
    @include bleed-x(); 
    } 

    @include breakpoint($small) { 
    @include span(8 last); 
    } 
} 
Verwandte Themen