The screen goes up when i use hide/show

$scope.cloth=false;
$scope.hideCloth=function(){
$scope.cloth=!$scope.cloth;
}

          <label class="toggle" ng-click="hideCloth()" >
	   <input type="checkbox">
	   <div class="track">
		 <div class="handle"></div>
	   </div>
     </label>

          <li ng-show="cloth" >
		 <label class="checkbox">
		   <input type="checkbox">
		 </label>
		 socks
	  </li>