AnalysisSystemForRadionucli.../src/views/abnormalAlarm/components/boxTitle.vue

45 lines
880 B
Vue
Raw Normal View History

2023-07-26 18:08:28 +08:00
<template>
<div class="chart-title">
<span>{{ title }}</span>
<img src="@/assets/images/abnormalAlarm/title_right.png" alt="">
</div>
</template>
<script>
export default {
props: {
title: {
type: String,
default: ""
}
}
}
</script>
<style lang="less" scoped>
.chart-title{
height: 40px;
font-family: MicrogrammaD-MediExte;
font-size: 18px;
font-weight: bold;
line-height: 36px;
letter-spacing: 1px;
color: #0cebc9;
border-bottom: 4px solid rgba(12, 235, 201, 0.2);
border-top: 1px solid rgba(12, 235, 201, 0.2);
position: relative;
// display: flex;
// justify-content: space-between;
span{
display: inline-block;
padding: 0 15px;
background-color: rgba(12, 235, 201, 0.05);
}
img{
position: absolute;
right: 15px;
top: 50%;
transform: translateY(-50%);
}
}
</style>