update branding

This commit is contained in:
Lucy Cifferello
2023-06-01 14:41:11 -06:00
committed by Matt Hill
parent 5441b5a06b
commit f088f65d5a
9 changed files with 6 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.2 KiB

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 74 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.0 KiB

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 86 KiB

View File

@@ -4,7 +4,7 @@
.logo {
display: block;
width: 50%;
width: 60%;
margin: 0 auto;
}

View File

@@ -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'
}