1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <template>
- <div id="app">
- <router-view/>
- </div>
- </template>
- <script>
- export default {
- name: 'App',
- }
- </script>
- <style lang='scss'>
- html,body,#app{width:100%;height:100%;margin:0;padding:0;overflow: hidden;}
- table-edit-set{margin-right:10px;color:#3764FF;cursor:pointer}
- ::-webkit-scrollbar {
- width: 10px;
- }
- ::-webkit-scrollbar-thumb {background: #d8d8d8;border-radius: 10px;}
- ::-webkit-scrollbar-track-piece {background: transparent;}
- .vertical-center-modal{display: flex;align-items: center;justify-content: center;.ivu-modal{top: 0;}}
- .log-list{display: flex;flex-wrap:wrap;padding:10px 0;color:#666;}
- .log-item{margin-right:40px;margin-bottom:20px;
- span{
- &:last-child{color:#333;font-weight:bold;}
- }
- }
- .icon{width: 1em;height: 1em;vertical-align: -0.15em;fill: currentColor;overflow: hidden;}
- .page-edit{overflow: hidden;overflow-y: auto;position:relative;top:20px;height:85%;padding-bottom: 20px;;}
- .ivu-form-item{margin-bottom:15px!important;}
- .map-margin{margin:0 5px;}
- .table-set{display:flex;justify-content:space-around;align-items:center;}
- .ivu-form-item-error-tip{font-size:12px!important;padding:2px!important}
- .ivu-table{::-webkit-scrollbar-thumb {background: #d8d8d8;border-radius: 0px;height:5px;}}
- .ivu-table-fixed-header{
- .ivu-table-cell-with-selection{&::after{content: '全选';}}
- }
- ul li{list-style: none;;}
- </style>
|