|
|
发表于 2023-5-8 17:58:29
|
查看全部
这个模板建议使用方形logo,保持风格一致。
如果需要使用其他样式,可以按以下步骤改下代码:
1. 编辑template/domi_mi/static下的theme.css
2. 修改554行
- .BoardIcon_boardIcon,
- .nv_logo img,
- .fl_icn,
- .fl_icn_g,
- .fl_g img,
- .fl_icn img,
- .fl_g svg,
- .fl_icn svg {
- /* -webkit-mask-image: url(/template/domi_mi/static/img/board-icon-mask.svg); */
- mask-image: url(/template/domi_mi/static/img/board-icon-mask.svg);
- -webkit-mask-repeat: round;
- mask-repeat: round;
- border: unset;
- }
复制代码
为- .BoardIcon_boardIcon,
- .fl_icn,
- .fl_icn_g,
- .fl_g img,
- .fl_icn img,
- .fl_g svg,
- .fl_icn svg {
- /* -webkit-mask-image: url(/template/domi_mi/static/img/board-icon-mask.svg); */
- mask-image: url(/template/domi_mi/static/img/board-icon-mask.svg);
- -webkit-mask-repeat: round;
- mask-repeat: round;
- border: unset;
- }
复制代码
3.修改宽高,332行
- .nv_logo img {
- max-width: 84px;
- height: 36px;
- object-fit: cover;
- }
复制代码
【可能后期行数会变化,搜索对应的关键词即可】 |
|