Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. <ion-col style="display: contents">
  2. <button primary large class="inbtn" (click)="decrement()">
  3. <ion-icon name="remove" ></ion-icon>
  4. </button>
  5. <h2 style="margin-left: 7px;margin-top: 0px;font-size: 2.4rem;"><b>{{currentNumber}}</b></h2>
  6. <button primary large class="inbtn" (click)="increment()" >
  7. <ion-icon name="add" ></ion-icon>
  8. </button>
  9. </ion-col>
  10.  
  11. .inbtn{
  12. height: 30px;
  13. width: 30px;
  14. display: inline-block;
  15. border-radius: 50%;
  16. font-size: large;
  17. font-weight: 500;
  18. margin-left: 7px;
  19. vertical-align: middle;
  20. background-color: #d8d8d8 !important;
  21. text-align: center;
  22. -webkit-appearance: none;
  23. }
  24.  
  25. .iconbtn{
  26. display: flex;
  27. justify-content: center;
  28. align-items: center;
  29. width: 100px;
  30. height: 100px;
  31. }
  32.  
  33. .inbtn{
  34. height: 30px;
  35. width: 30px;
  36. display: inline-block;
  37. border-radius: 50%;
  38. font-size: large;
  39. font-weight: 500;
  40. margin-left: 25%;
  41. margin-right:25%;
  42. vertical-align: middle;
  43. background-color: #d8d8d8 !important;
  44. text-align: center;
  45. -webkit-appearance: none;
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement