Newer
Older
cockpit_hxrq_front / src / components / Brand / brand.vue
StephanieGitHub on 11 Apr 2021 471 bytes ADD:品牌logo
<!--
 * @Description: 品牌LOGO
 * @Author: 王晓颖
 * @Date:
 -->
<template>
  <!--遮罩-->
  <div class="mask">
    华新燃气集团
  </div>
</template>

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

<style rel="stylesheet/scss" lang="scss" scoped>
  /*logo遮罩*/
  .mask{
    position: fixed;
    padding-left:10px;
    padding-right:10px;
    bottom:0px;
    left:0px;
    background-color:#000000;
    color:#ffffff;
    line-height:2
  }
</style>