in application/PhotoToSketch/PhotoToSketch/EffectApplyScreen/EffectApplyViewController.swift [211:222]
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
if(collectionView == rulerSliderCollectionView){
if(indexPath.row == 0 || indexPath.row == 11){
return CGSize(width: collectionView.frame.width / 2, height: 40)
}else{
return CGSize(width: 85, height: 40)
}
}else{
return CGSize(width: 80, height: 90)
}
}