update branding
|
Before Width: | Height: | Size: 7.2 KiB After Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 74 KiB |
|
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 32 KiB |
BIN
frontend/projects/shared/assets/img/icon_transparent.png
Normal file
|
After Width: | Height: | Size: 52 KiB |
|
Before Width: | Height: | Size: 8.0 KiB After Width: | Height: | Size: 40 KiB |
|
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 42 KiB |
BIN
frontend/projects/shared/assets/img/registry-icon.png
Normal file
|
After Width: | Height: | Size: 86 KiB |
@@ -4,7 +4,7 @@
|
||||
|
||||
.logo {
|
||||
display: block;
|
||||
width: 50%;
|
||||
width: 60%;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
|
||||
@@ -15,8 +15,10 @@ import { sameUrl } from '@start9labs/shared'
|
||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||
})
|
||||
export class StoreIconComponent {
|
||||
@Input() url: string = ''
|
||||
@Input() size?: string
|
||||
@Input()
|
||||
url: string = ''
|
||||
@Input()
|
||||
size?: string
|
||||
}
|
||||
|
||||
@Pipe({
|
||||
@@ -29,7 +31,7 @@ export class GetIconPipe implements PipeTransform {
|
||||
const { start9, community } = this.config.marketplace
|
||||
|
||||
if (sameUrl(url, start9)) {
|
||||
return 'assets/img/icon.png'
|
||||
return 'assets/img/registry-icon.png'
|
||||
} else if (sameUrl(url, community)) {
|
||||
return 'assets/img/community-store.png'
|
||||
}
|
||||
|
||||