40 lines
609 B
Vue
40 lines
609 B
Vue
|
<template>
|
||
|
<div class="source">
|
||
|
<div class="source__source">
|
||
|
{{ source }}
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
props: ['source'],
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss">
|
||
|
.source {
|
||
|
position: absolute;
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
align-items: center;
|
||
|
width: 180px;
|
||
|
height: 30px;
|
||
|
margin: -15px 0 0 -90px;
|
||
|
border: 1px solid #e0e0e0;
|
||
|
border-radius: 10px;
|
||
|
|
||
|
&__source {
|
||
|
width: 100%;
|
||
|
color: #ffffff;
|
||
|
font-family: "Wendy One";
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
&:hover {
|
||
|
background-color: rgba(128,128,128,0.5);
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
}
|
||
|
</style>
|