1234567891011121314151617181920212223242526 |
- <template lang="pug">
- .cart-options
- button.cart-next Continuar
- </template>
- <style lang="sass">
- .cart-options
- width: 100%
- height: 50px
- .cart-next
- width: 100%
- height: inherit
- border: none
- border-radius: 0
- box-shadow: none
- background: #4caf50
- color: #fff
- font:
- size: 12pt
- weight: bold
- &:hover
- background: #388e3c
- </style>
|