0
yorytang created
2 Answer(s)
-
0
Hello,
We utilize bootstrap components and override their styles according to our needs. ABP templates come with
ng-bootstrap
installed.Please refer to their docs
Also, for the checkbox, you can use
custom-checkbox
class as shown here<div class="custom-control custom-checkbox"> <input type="checkbox" class="custom-control-input" id="customCheck1"> <label class="custom-control-label" for="customCheck1">Check this custom checkbox</label> </div>
-
0
thanks