App.vue 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <template>
  2. <div id="app">
  3. <router-view/>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: "app",
  9. data() {
  10. return {};
  11. },
  12. methods: {
  13. }
  14. };
  15. </script>
  16. <style rel="stylesheet/scss" lang="scss">
  17. body{
  18. margin: 0px;
  19. }
  20. #app {
  21. margin: 0px;
  22. padding: 0px;
  23. background: #efefef;
  24. position:absolute;
  25. top:0px;
  26. left:0px;
  27. right:0px;
  28. bottom:0px;
  29. display:flex;
  30. flex-direction: column;
  31. }
  32. .sticky-bg{
  33. background-color:#fff;
  34. }
  35. .el-table__header thead tr th{
  36. background: #f1f6fa !important;
  37. padding: 10px 0px 10px 0px;
  38. }
  39. .el-table{
  40. margin-top:5px;
  41. }
  42. .demo-form-inline{
  43. .el-form-item{
  44. margin-bottom: 10px;
  45. }
  46. }
  47. .role-permission {
  48. .el-transfer-panel {
  49. border: 1px solid #ebeef5;
  50. border-radius: 4px;
  51. overflow: hidden;
  52. background: #fff;
  53. display: inline-block;
  54. vertical-align: middle;
  55. width: 320px;
  56. -webkit-box-sizing: border-box;
  57. box-sizing: border-box;
  58. position: relative;
  59. }
  60. }
  61. body, ul, ol, li, p, h1, h2, h3, h4, h5, h6, form, fieldset,
  62. table, td, img, div, tr {margin:0; padding:0;}
  63. </style>