allure報告自定義logo圖片和文字

Zoe_Luck發表於2024-08-15

  有時根據專案需要把allure報告的logo換成公司的,步驟如下:

1、將自定義的logo圖片放到static資料夾中,尺寸大小100*100

  D:\allure-2.13.9\plugins\custom-logo-plugin\static

2、編輯styles.css檔案。

修改和增加如下css:

.side-nav__brand{
    background: url('logo.jpg') no-repeat left center !important;
    margin‐left: 10px;
    margin-right:10px;
    height: 90px;    
    background‐size: contain !important;
    }

.side-nav__brand-text{
    display: none;
    }

.side-nav__brand span{
    display:none;
}

.side-nav__brand:after{
    content:"Zoe";
    margin-left:60px;
    line-height:90px;
}

3、重新生成報告後生效。

相關文章