You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.1 KiB
53 lines
1.1 KiB
<template>
|
|
<div id="app">
|
|
<router-view></router-view>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
body {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
#app {
|
|
width: 100%;
|
|
height: 100vh;
|
|
position: relative;
|
|
overflow: hidden;
|
|
background: #000;
|
|
}
|
|
|
|
.el-dialog__body{
|
|
padding:10px !important;
|
|
}
|
|
.backDialog{
|
|
background: url("~@/assets/next-images/build-leader-attach-bg.png") no-repeat !important;
|
|
background-size: 100% 100% !important;
|
|
max-height: 668px;
|
|
overflow-y: scroll;
|
|
&::-webkit-scrollbar {
|
|
width: 3px;
|
|
}
|
|
&::-webkit-scrollbar-track {
|
|
border-radius: 10px;
|
|
background: rgba(12, 129, 254, 0.24);
|
|
}
|
|
&::-webkit-scrollbar-thumb {
|
|
border-radius: 10px;
|
|
background: linear-gradient(270deg, #0063fe, #0095ff);
|
|
}
|
|
}
|
|
.el-table{
|
|
&::-webkit-scrollbar {
|
|
width: 3px;
|
|
}
|
|
&::-webkit-scrollbar-track {
|
|
border-radius: 10px;
|
|
background: rgba(12, 129, 254, 0.24);
|
|
}
|
|
&::-webkit-scrollbar-thumb {
|
|
border-radius: 10px;
|
|
background: linear-gradient(270deg, #0063fe, #0095ff);
|
|
}
|
|
}
|
|
</style>
|
|
|