Newer
Older
CloudBrainNew / src / components / title / PanelTitle1.vue
StephanieGitHub on 4 Feb 2021 763 bytes first commit
<!--
 * @Description:
 * @Author: 王晓颖
 * @Date: 2020-08-10 11:32:02
 -->
<template>
  <div class="Subheading">
    <span><slot></slot></span>
  </div>
</template>

<script>
export default {
  name: 'panelTitle1'
}
</script>

<style rel="stylesheet/scss" lang="scss" scoped>
  @import '../../assets/css/variable.scss';
  .Subheading {
    height: 0.21rem;
    background: url("../../assets/images/title.png") no-repeat center top;
    background-size: auto 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.05rem;
    span {
      background: $gradientText;
      -webkit-background-clip: text;
      color: transparent;
      font-size: 0.12rem;
      font-weight: bold;
    }
  }
</style>