BudgetStep.vue 291 B

123456789101112131415161718
  1. <template lang="pug">
  2. .purchase-step
  3. </template>
  4. <script>
  5. export default {
  6. }
  7. </script>
  8. <style lang="sass">
  9. @import '../../assets/variables'
  10. .purchase-step
  11. width: 100%
  12. height: calc(100% - 50px)
  13. padding-bottom: 50px
  14. display: flex
  15. </style>