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.
35 lines
573 B
35 lines
573 B
|
4 years ago
|
<template>
|
||
|
|
<div class="empty">
|
||
|
|
<div class="icon"></div>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
data () {
|
||
|
|
return {}
|
||
|
|
},
|
||
|
|
methods: {}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style scoped lang="scss" rel="stylesheet/scss">
|
||
|
|
.empty {
|
||
|
|
width: 100%;
|
||
|
|
height: calc(100% - 37px);
|
||
|
|
margin: 15px 0;
|
||
|
|
|
||
|
|
display: flex;
|
||
|
|
justify-content: center;
|
||
|
|
align-items: center;
|
||
|
|
.icon {
|
||
|
|
width: 100%;
|
||
|
|
height: 160px;
|
||
|
|
background: url("../../../../../assets/img/modules/visual/noData.png")
|
||
|
|
no-repeat;
|
||
|
|
background-size: contain;
|
||
|
|
background-position: 50% 50%;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</style>
|