This commit is contained in:
sdarbinyan
2026-06-20 13:33:52 +04:00
parent 9aaff4d80a
commit a06b654103
3 changed files with 27 additions and 3 deletions

View File

@@ -3,12 +3,15 @@ import { environment } from '../../../environments/environment';
@Component({
selector: 'app-logo',
template: `<img [src]="logoPath" [alt]="brandName + ' logo'" class="logo-img" fetchpriority="high" />`,
template: `<img [src]="logoPath" [alt]="brandName + ' logo'" class="logo-img" fetchpriority="high" draggable="false" />`,
styles: [`
.logo-img {
display: block;
width: 100%;
height: 100%;
object-fit: contain;
pointer-events: none;
user-select: none;
}
`],
changeDetection: ChangeDetectionStrategy.OnPush