- 在运营平台index.html中添加ico和svg格式图标链接 - 在租户平台index.html中统一图标引用为标准favicon路径 - 添加运营平台SVG格式网站图标文件 - 添加租户平台SVG格式网站图标文件 - 移除租户平台原有的vite默认图标引用
18 行
663 B
XML
18 行
663 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
|
|
<defs>
|
|
<linearGradient id="bg" x1="0" y1="0" x2="1" y2="1">
|
|
<stop offset="0%" stop-color="#2BA5FF"/>
|
|
<stop offset="100%" stop-color="#0A65D4"/>
|
|
</linearGradient>
|
|
<clipPath id="round">
|
|
<rect width="100" height="100" rx="20"/>
|
|
</clipPath>
|
|
</defs>
|
|
<!-- Background -->
|
|
<rect width="100" height="100" rx="20" fill="url(#bg)"/>
|
|
<!-- X: two crossing bars (parallelograms) -->
|
|
<g clip-path="url(#round)">
|
|
<polygon points="12,20 30,6 88,80 70,94" fill="white" opacity="1"/>
|
|
<polygon points="70,6 88,20 30,94 12,80" fill="white" opacity="1"/>
|
|
</g>
|
|
</svg> |