CartOptions.vue 519 B

1234567891011121314151617181920212223242526
  1. <template lang="pug">
  2. .cart-options
  3. button.cart-next Continuar
  4. </template>
  5. <style lang="sass">
  6. .cart-options
  7. width: 100%
  8. height: 50px
  9. .cart-next
  10. width: 100%
  11. height: inherit
  12. border: none
  13. border-radius: 0
  14. box-shadow: none
  15. background: #4caf50
  16. color: #fff
  17. font:
  18. size: 12pt
  19. weight: bold
  20. &:hover
  21. background: #388e3c
  22. </style>