App.vue 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <script setup>
  2. </script>
  3. <template>
  4. <div>
  5. <router-view></router-view>
  6. </div>
  7. </template>
  8. <style lang="scss">
  9. @import "assets/css/base.css";
  10. #app {
  11. font-family: Avenir, Helvetica, Arial, sans-serif;
  12. -webkit-font-smoothing: antialiased;
  13. -moz-osx-font-smoothing: grayscale;
  14. color: #333;
  15. background: #F5F5F5;
  16. min-height: 100vh;
  17. font-size: 16px;
  18. // padding-bottom: 224px;
  19. }
  20. div{
  21. box-sizing: border-box;
  22. }
  23. .u-flex {
  24. display: flex;
  25. flex-direction: row;
  26. align-items: center;
  27. }
  28. .u-flex-col {
  29. display: flex;
  30. flex-direction: column;
  31. }
  32. .u-flex-wrap {
  33. flex-wrap: wrap;
  34. }
  35. .u-flex-nowrap {
  36. flex-wrap: nowrap;
  37. }
  38. .u-col-center {
  39. flex-direction: column;
  40. align-items: center;
  41. }
  42. .u-col-top {
  43. align-items: flex-start;
  44. }
  45. .u-col-bottom {
  46. align-items: flex-end;
  47. }
  48. .u-row-center {
  49. justify-content: center;
  50. }
  51. .u-row-left {
  52. justify-content: flex-start;
  53. }
  54. .u-row-right {
  55. justify-content: flex-end;
  56. }
  57. .u-row-between {
  58. display: flex;
  59. justify-content: space-between;
  60. }
  61. .u-row-around {
  62. display: flex;
  63. justify-content: space-around;
  64. }
  65. </style>