whychdw
2020-04-14 0bd7c55754ea67360a2ffeb4912b055fac4d1ce0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<template>
    <div class="right-triangle">
        <router-link tag="span" to="/equipment-monitor/AcCab">交流配电柜</router-link>
    </div>
</template>
 
<script>
export default {
    
}
</script>
 
<style scoped>
.right-triangle {
    display: inline-block;
    background-image: linear-gradient(rgba(197,212,236, 0), rgba(197,212,236, 1));
    line-height: 0.8rem;
    -webkit-mask: linear-gradient(225deg, transparent 50%, #fff 50%),
                  linear-gradient(-45deg, transparent 50%, #fff 50%); 
    -webkit-mask-position-y: 0.4rem;
    padding-right: 1rem;
}
</style>