App.vue 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <template>
  2. <div id="app">
  3. <router-view></router-view>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'App',
  9. components: {}
  10. }
  11. </script>
  12. <style lang="scss">
  13. @import './assets/style/global.css';
  14. #app {
  15. font-family: 'Avenir', Helvetica, Arial, sans-serif;
  16. -webkit-font-smoothing: antialiased;
  17. -moz-osx-font-smoothing: grayscale;
  18. position: absolute;
  19. height: 100%;
  20. width: 100%;
  21. }
  22. .el-message {
  23. z-index: 99999999 !important;
  24. }
  25. .el-scrollbar__thumb {
  26. background-color: #A0A8AF !important;
  27. }
  28. .el-dialog {
  29. border-radius: 8px !important;
  30. overflow: hidden !important;
  31. }
  32. .el-dialog__header {
  33. background-color: #5870e6 !important;
  34. }
  35. .el-dialog__title {
  36. color: #f8f8f8 !important;
  37. }
  38. .el-dialog__close {
  39. color: white !important;
  40. font-size: 20px;
  41. }
  42. .el-checkbox__inner {
  43. border-radius: 50% !important;
  44. }
  45. .el-input__inner {
  46. border-radius: 5px !important;
  47. border: #587FF0 1px solid !important;
  48. }
  49. .el-textarea__inner{
  50. border-radius: 5px !important;
  51. border: #587FF0 1px solid !important;
  52. }
  53. .el-icon-search {
  54. color:#587FF0 !important;
  55. }
  56. .el-button--primary {
  57. background-color: #687Ff0 !important;
  58. border-color: #687Ff0 !important;
  59. }
  60. .el-button--success {
  61. background-color: #4cae1b !important;
  62. border-color: #4cae1b !important;
  63. }
  64. .el-button--danger {
  65. background-color: #ea4949 !important;
  66. border-color: #ea4949 !important;
  67. }
  68. .el-button {
  69. padding: 8px 15px !important;
  70. }
  71. </style>