AddFunds.vue 984 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!--
  2. Copyright 2019 Hackware SpA <human@hackware.cl>
  3. This file is part of "Hackware Userland" and licensed under the terms
  4. of the GNU Affero General Public License version 3, or (at your option)
  5. a later version. You should have received a copy of this license along
  6. with the software. If not, see <https://www.gnu.org/licenses/>.
  7. -->
  8. <template>
  9. <div class="add-funds">
  10. <div class="row">
  11. <div class="left-column">
  12. <router-view />
  13. </div>
  14. <div class="right-column">
  15. <WalletOverview />
  16. </div>
  17. </div>
  18. </div>
  19. </template>
  20. <script>
  21. import WalletOverview from '@/components/WalletOverview.vue';
  22. export default {
  23. name: 'AddFunds',
  24. components: {
  25. WalletOverview,
  26. },
  27. };
  28. </script>
  29. <style lang="scss">
  30. @import "../assets/bootstrap/custom";
  31. .left-column {
  32. @extend .col-sm-7;
  33. @extend .pt-3;
  34. }
  35. .right-column {
  36. @extend .col-sm-5;
  37. @extend .pt-4;
  38. @extend .bg-light;
  39. @extend .sticky-top;
  40. height: 100vh;
  41. }
  42. </style>