Newer
Older
cockpit_hxrq_front / src / components / Brand / brand.vue
StephanieGitHub on 30 Apr 2021 488 bytes MOD:完善岗位、员工管理
<!--
 * @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;
    width:200px;
    padding-left:10px;
    padding-right:10px;
    bottom:0px;
    left:0px;
    background-color:#0F3F8D;
    color:#0F3F8D;
    line-height:2
  }
</style>