App.vue 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. html,body,#app{width:100%;height:100%;margin:0;padding:0;overflow: hidden;}
  13. table-edit-set{margin-right:10px;color:#3764FF;cursor:pointer}
  14. ::-webkit-scrollbar {
  15. width: 10px;
  16. }
  17. ::-webkit-scrollbar-thumb {background: #d8d8d8;border-radius: 10px;}
  18. ::-webkit-scrollbar-track-piece {background: transparent;}
  19. .vertical-center-modal{display: flex;align-items: center;justify-content: center;.ivu-modal{top: 0;}}
  20. .log-list{display: flex;flex-wrap:wrap;padding:10px 0;color:#666;}
  21. .log-item{margin-right:40px;margin-bottom:20px;
  22. span{
  23. &:last-child{color:#333;font-weight:bold;}
  24. }
  25. }
  26. .icon{width: 1em;height: 1em;vertical-align: -0.15em;fill: currentColor;overflow: hidden;}
  27. .page-edit{overflow: hidden;overflow-y: auto;position:relative;top:20px;height:85%;padding-bottom: 20px;;}
  28. .ivu-form-item{margin-bottom:15px!important;}
  29. .map-margin{margin:0 5px;}
  30. .table-set{display:flex;justify-content:space-around;align-items:center;}
  31. .ivu-form-item-error-tip{font-size:12px!important;padding:2px!important}
  32. .ivu-table{::-webkit-scrollbar-thumb {background: #d8d8d8;border-radius: 0px;height:5px;}}
  33. .ivu-table-fixed-header{
  34. .ivu-table-cell-with-selection{&::after{content: '全选';}}
  35. }
  36. ul li{list-style: none;;}
  37. </style>