App.vue 881 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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 lang="scss">
  12. * {
  13. margin: 0;
  14. padding: 0;
  15. }
  16. .el-table {
  17. .el-table__body-wrapper {
  18. &::-webkit-scrollbar {
  19. background: #d3dce6;
  20. }
  21. &::-webkit-scrollbar-thumb {
  22. background: #99a9bf;
  23. border-radius: 10px;
  24. }
  25. }
  26. }
  27. @media screen and (max-width: 768px) {
  28. .el-message {
  29. min-width: 300px !important;
  30. }
  31. .el-message-box {
  32. width: 300px !important;
  33. }
  34. .el-dialog__wrapper .el-dialog {
  35. width: 95% !important;
  36. .el-dialog__body {
  37. padding: 10px 20px !important;
  38. }
  39. }
  40. .el-date-range-picker {
  41. left: 0 !important;
  42. }
  43. .el-form-item__label {
  44. display: block;
  45. width: 100% !important;
  46. text-align: left;
  47. }
  48. .el-form-item__content {
  49. margin-left: 0 !important;
  50. }
  51. }
  52. </style>