This commit is contained in:
MaxKey
2022-10-05 21:18:34 +08:00
parent d9a9a540eb
commit 5a9f23542e
10 changed files with 22 additions and 9 deletions

View File

@@ -37,7 +37,7 @@ import { LayoutDefaultOptions } from '../../theme/layout-default';
<layout-default [options]="options" [asideUser]="asideUserTpl" [content]="contentTpl" [customError]="null">
<layout-default-header-item direction="left" *ngIf="!inst.custom">
<a href="#">
<img src="./assets/logo.jpg" alt="logo" style="height: 50px;height: 50px;float: left;" />
<img src="./assets/logo.png" alt="logo" style="height: 50px;height: 50px;float: left;" />
<div
class="alain-default__nav-item_title"
style="letter-spacing: 2px;
@@ -46,7 +46,9 @@ import { LayoutDefaultOptions } from '../../theme/layout-default';
width: 450px;
margin-top: 12px;"
>
Max<span style="color: #FFD700;">Key</span>{{ 'mxk.title' | i18n }}
<span style="color: #000099;">Max</span>
<span style="color: #FFD700;">Key</span>
{{ 'mxk.title' | i18n }}
</div>
</a>
</layout-default-header-item>

View File

@@ -2,11 +2,14 @@
<div nz-row style="border-bottom: 1px solid #e5e5e5; min-height: 60px; text-shadow: 0 1px 0 #fff">
<div nz-col nzMd="2"></div>
<div nz-col nzMd="2" style="text-align: right">
<img *ngIf="!inst.custom" style="margin-top: 6px" class="logo" src="./assets/logo.jpg" />
<img *ngIf="!inst.custom" style="margin-top: 6px" class="logo" src="./assets/logo.png" />
<img *ngIf="inst.custom" style="margin-top: 6px" class="logo" src="{{ inst.logo }}" />
</div>
<div nz-col nzMd="10">
<div *ngIf="!inst.custom" class="title"> Max<span style="color: #ffd700">Key</span> {{ 'mxk.title' | i18n }}
<div *ngIf="!inst.custom" class="title">
<span style="color: #000099">Max</span>
<span style="color: #ffd700">Key</span>
{{ 'mxk.title' | i18n }}
</div>
<div *ngIf="inst.custom" class="title">{{ inst.title }}</div>
</div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 66 KiB