diff options
Diffstat (limited to 'client')
-rw-r--r-- | client/src/app/app.component.scss | 2 | ||||
-rw-r--r-- | client/src/index.html | 11 |
2 files changed, 10 insertions, 3 deletions
diff --git a/client/src/app/app.component.scss b/client/src/app/app.component.scss index d121ebad2..38ec11b5b 100644 --- a/client/src/app/app.component.scss +++ b/client/src/app/app.component.scss | |||
@@ -62,7 +62,7 @@ | |||
62 | 62 | ||
63 | .icon.icon-logo { | 63 | .icon.icon-logo { |
64 | display: inline-block; | 64 | display: inline-block; |
65 | background: url('../assets/images/logo.svg') no-repeat; | 65 | background-repeat: no-repeat; |
66 | width: 23px; | 66 | width: 23px; |
67 | height: 24px; | 67 | height: 24px; |
68 | margin-right: .5rem; | 68 | margin-right: .5rem; |
diff --git a/client/src/index.html b/client/src/index.html index 52ae000bb..e5d1569aa 100644 --- a/client/src/index.html +++ b/client/src/index.html | |||
@@ -7,9 +7,16 @@ | |||
7 | <meta name="theme-color" content="#fff" /> | 7 | <meta name="theme-color" content="#fff" /> |
8 | <meta property="og:platform" content="PeerTube" /> | 8 | <meta property="og:platform" content="PeerTube" /> |
9 | <!-- Web Manifest file --> | 9 | <!-- Web Manifest file --> |
10 | <link rel="manifest" href="/manifest.webmanifest"> | 10 | <link rel="manifest" href="/manifest.webmanifest?[manifestContentHash]"> |
11 | 11 | ||
12 | <link rel="icon" type="image/png" href="/client/assets/images/favicon.png" /> | 12 | <link rel="icon" type="image/png" href="/client/assets/images/favicon.png?[faviconContentHash]" /> |
13 | |||
14 | <!-- logo background-image --> | ||
15 | <style type="text/css"> | ||
16 | .icon-logo { | ||
17 | background-image: url(/client/assets/images/logo.svg?[logoContentHash]); | ||
18 | } | ||
19 | </style> | ||
13 | 20 | ||
14 | <!-- base url --> | 21 | <!-- base url --> |
15 | <base href="/"> | 22 | <base href="/"> |