2021-08-20 20:06:28 +00:00
|
|
|
<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;
|
2021-08-26 10:23:32 +00:00
|
|
|
background-color: #402080;
|
2021-08-20 20:06:28 +00:00
|
|
|
|
|
|
|
&__source {
|
|
|
|
width: 100%;
|
|
|
|
color: #ffffff;
|
|
|
|
font-family: "Wendy One";
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
2021-08-26 10:23:32 +00:00
|
|
|
background-color: #8060c0;
|
2021-08-20 20:06:28 +00:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|