App.vue 623 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <div id="app">
  3. <router-view />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'App'
  9. }
  10. </script>
  11. <style>
  12. .el-table--scrollable-x .el-table__body-wrapper{
  13. overflow-x: auto;
  14. }
  15. .el-table__body-wrapper::-webkit-scrollbar {
  16. width: 8px;
  17. height: 8px;
  18. }
  19. .el-table__body-wrapper::-webkit-scrollbar-thumb {
  20. border-radius: 5px;
  21. height: 100px;
  22. background: #afafaf;
  23. }
  24. .el-table__body-wrapper::-webkit-scrollbar-track {
  25. box-shadow: inset 0 0 5px rgba(255, 255, 255, 1);
  26. border-radius: 5px;
  27. background: rgba(255, 255, 255, 1);
  28. }
  29. .el-table__body-wrapper {
  30. background: #ffffff;
  31. }
  32. </style>