Skip to content

Commit 3b9abdd

Browse files
Merge pull request #1643 from rx-angular/feature/update-logo
chore(docs): update logo
2 parents b3202a7 + 1bb1743 commit 3b9abdd

File tree

5 files changed

+90
-8
lines changed

5 files changed

+90
-8
lines changed

apps/docs/blog/2023-03-07-announcing-rxangular-cdk-and-template-1-0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors:
88
- Karnaukhov-kh
99
- LayZeeDK
1010
tags: [cdk, release, template]
11-
image: /img/logo.png
11+
image: /img/logo.svg
1212
hide_table_of_contents: false
1313
---
1414

apps/docs/docusaurus.config.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const googleTrackingId = 'UA-180240379-1';
1414
/** @type {import('@docusaurus/types').Config} */
1515
module.exports = {
1616
baseUrl: '/',
17-
favicon: 'img/logo.png',
17+
favicon: 'img/logo.svg',
1818
/**
1919
* Even if you don't use internalization, you can use this field to set useful
2020
* metadata like html lang. For example, if your site is Chinese, you may want
@@ -76,7 +76,7 @@ module.exports = {
7676
title: 'RxAngular',
7777
logo: {
7878
alt: 'RxAngular',
79-
src: 'img/logo.png',
79+
src: 'img/logo.svg',
8080
},
8181
items: [
8282
{
@@ -127,7 +127,7 @@ module.exports = {
127127
logo: {
128128
alt: title,
129129
href: url,
130-
src: 'img/logo.png',
130+
src: 'img/logo.svg',
131131
},
132132
links: [
133133
{
@@ -183,7 +183,7 @@ module.exports = {
183183
},
184184
],
185185
},
186-
image: 'img/logo.png',
186+
image: 'img/logo.svg',
187187
colorMode: {
188188
respectPrefersColorScheme: true,
189189
},

apps/docs/src/css/custom.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@
4343
padding: 0 var(--ifm-pre-padding);
4444
}
4545

46-
img[src$='img/logo.png'] {
46+
img[src$='img/logo.svg'] {
4747
filter: drop-shadow(5px 5px 3px rgba(0, 0, 0, 0.25));
4848
}
4949

50-
.navbar__logo img[src$='img/logo.png'] {
50+
.navbar__logo img[src$='img/logo.svg'] {
5151
filter: none;
5252
}
5353

apps/docs/src/pages/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function HomepageHeader(): JSX.Element {
1212
return (
1313
<header className={clsx('hero hero--primary', styles.heroBanner)}>
1414
<div className="container">
15-
<img src="img/logo.png" width="150" height="150" />
15+
<img src="img/logo.svg" width="150" height="150" />
1616
<h1 className="hero__title">{siteConfig.title}</h1>
1717
<p className="hero__subtitle">{siteConfig.tagline}</p>
1818
<div className={styles.buttons}>

apps/docs/static/img/logo.svg

Lines changed: 82 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)