2015-01-17 5 views
1

@import "susy"; 대신 @import "susyone";으로 susy-2.1.2를 실행했습니다. 모든 것이 작동하고있었습니다. Sass가 업데이트해야하는 GEM을 통해 나침반을 업데이트해야했기 때문에 susy도 업데이트해야했습니다. 이제 susy-2.2.1을 실행 중입니다. 나는 또한이업데이트 후 더 이상 Susyone이 예상대로 작동하지 않습니다.

.dropdown .susy_container { 
    max-width: 59em; 
    _width: 59em; 
    padding-left: 0em; 
    padding-right: 0em; 
    margin-left: auto; 
    margin-right: auto; 
} 

:이 얻을 새 버전으로

.dropdown .susy_container { 
    max-width: 1211em; 
    _width: 1211em; 
    padding-left: 0em; 
    padding-right: 0em; 
    margin-left: auto; 
    margin-right: auto; 
} 

:

.dropdown .susy_container{ 
    //Get ready for grids with bigger screen sizes 
    $total-columns: 12; // a 12-column grid 
    $column-width: 100em; // each column 
    $gutter-width: 1em !global; // gutters between columns 
    $grid-padding: 0em !global ; 
    @include container; 
} 

이전 버전으로 나는이 얻을 것이다 :

나는이 CSS를 가지고 기둥 사이의 이상한 배수구. 나는 susyone.scss을 사용하고 있는지 100 % 확신합니다.

은 내가 susy의 이전 버전으로 돌아갈 수 있으면 좋겠다,하지만 난이 얻을 :

이 Susy의 변화없는
Gem::LoadError on line ["2064"] of /Library/Ruby/Site/2.0.0/rubygems/specification.rb: Unable to activate susy-2.1.2, because sass-3.4.9 conflicts with sass (~> 3.3.0) 
+0

빠른 수정으로 버전 2.1.3을 사용해 볼 수 있습니다. [changelog] (http://susydocs.oddbird.net/en/latest/changelog/#jul-16-2014)에 따르면 Sass 3.4와 호환되지만 2.1.2와 비교하면 몇 가지 다른 변경 사항이 있습니다. – Miikka

+0

나는 언급 했어야했다, 나는 2.1.3을 시도했다. – thegreyspot

답변

0

, 그것은 사스의 변화입니다. 해당 설정을 적용하려면 !global 플래그가 필요합니다 :

.dropdown .susy_container{ 
    //Get ready for grids with bigger screen sizes 
    $total-columns: 12 !global; // a 12-column grid 
    $column-width: 100em !global; // each column 
    $gutter-width: 1em !global; // gutters between columns 
    $grid-padding: 0em !global ; 
    @include container; 
} 
+0

감사합니다. 내가 scoot를 사용하는 것은 오래 전이었습니다. 왜냐하면 Bootstrap에이 문제가 있었기 때문입니다. 어쩌면 susy가 방금 2.1.3으로 돌보기 시작했을 것입니다. – thegreyspot

+0

변경된 내용이 확실하지 않습니다. 그건 우리가 수 서리 내부를 통제 할 수있는 게 아니야. –