I have a mini problem, I have a list of checkbox
but it is unbalanced, I have the following code with the directive <ion-checkbox>
<ion-item class="item-button-right" ng-repeat="item in unitPhysicalStateList" >
{{item.unitPartName}}
<div class="buttons">
<ion-checkbox ng-model="item.good"
ng-checked="item.good" ng-disabled="item.bad">B</ion-checkbox>
<ion-checkbox ng-model="item.bad"
ng-checked="item.bad" ng-disabled="item.good">M</ion-checkbox>
</div>
</ion-item>
CSS:
.buttons {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -moz-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
-moz-align-items: center;
align-items: center;
position: absolute;
top: 8px;
right: 16px;
min-width: 34px;
min-height: 34px;
font-size: 18px;
line-height: 32px; }
But in the view it is described:
In my checkbox list, the lines that are from a list come out, someone knows how to remove the line or can improve the directive ???.
Thank you very much