diff options
Diffstat (limited to 'client')
-rw-r--r-- | client/src/app/menu/menu.component.scss | 8 | ||||
-rw-r--r-- | client/src/app/videos/video-list/video-overview.component.html | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/client/src/app/menu/menu.component.scss b/client/src/app/menu/menu.component.scss index 8539c0e56..f8c7d8519 100644 --- a/client/src/app/menu/menu.component.scss +++ b/client/src/app/menu/menu.component.scss | |||
@@ -137,7 +137,7 @@ menu { | |||
137 | 137 | ||
138 | &.icon-videos-subscriptions { | 138 | &.icon-videos-subscriptions { |
139 | position: relative; | 139 | position: relative; |
140 | top: -2px; | 140 | top: -1px; |
141 | background-image: url('../../assets/images/menu/subscriptions.svg'); | 141 | background-image: url('../../assets/images/menu/subscriptions.svg'); |
142 | } | 142 | } |
143 | 143 | ||
@@ -148,23 +148,23 @@ menu { | |||
148 | 148 | ||
149 | &.icon-videos-trending { | 149 | &.icon-videos-trending { |
150 | position: relative; | 150 | position: relative; |
151 | top: -2px; | 151 | top: -1px; |
152 | background-image: url('../../assets/images/menu/trending.svg'); | 152 | background-image: url('../../assets/images/menu/trending.svg'); |
153 | } | 153 | } |
154 | 154 | ||
155 | &.icon-videos-recently-added { | 155 | &.icon-videos-recently-added { |
156 | width: 23px; | 156 | width: 23px; |
157 | height: 23px; | 157 | height: 23px; |
158 | position: relative; | ||
159 | top: -1px; | ||
160 | background-image: url('../../assets/images/menu/recently-added.svg'); | 158 | background-image: url('../../assets/images/menu/recently-added.svg'); |
161 | } | 159 | } |
162 | 160 | ||
163 | &.icon-videos-local { | 161 | &.icon-videos-local { |
164 | width: 23px; | 162 | width: 23px; |
165 | height: 23px; | 163 | height: 23px; |
164 | |||
166 | position: relative; | 165 | position: relative; |
167 | top: -1px; | 166 | top: -1px; |
167 | |||
168 | background-image: url('../../assets/images/menu/home.svg'); | 168 | background-image: url('../../assets/images/menu/home.svg'); |
169 | } | 169 | } |
170 | 170 | ||
diff --git a/client/src/app/videos/video-list/video-overview.component.html b/client/src/app/videos/video-list/video-overview.component.html index 84a4c70ee..be9db3d90 100644 --- a/client/src/app/videos/video-list/video-overview.component.html +++ b/client/src/app/videos/video-list/video-overview.component.html | |||
@@ -4,7 +4,7 @@ | |||
4 | 4 | ||
5 | <div class="section" *ngFor="let object of overview.categories"> | 5 | <div class="section" *ngFor="let object of overview.categories"> |
6 | <div class="section-title" i18n> | 6 | <div class="section-title" i18n> |
7 | <a routerLink="/search" [queryParams]="{ categoryOneOf: [ object.category.id ] }">Category {{ object.category.label }}</a> | 7 | <a routerLink="/search" [queryParams]="{ categoryOneOf: [ object.category.id ] }">{{ object.category.label }}</a> |
8 | </div> | 8 | </div> |
9 | 9 | ||
10 | <div> | 10 | <div> |
@@ -14,7 +14,7 @@ | |||
14 | 14 | ||
15 | <div class="section" *ngFor="let object of overview.tags"> | 15 | <div class="section" *ngFor="let object of overview.tags"> |
16 | <div class="section-title" i18n> | 16 | <div class="section-title" i18n> |
17 | <a routerLink="/search" [queryParams]="{ categoryOneOf: [ object.category.id ] }">Tag {{ object.tag }}</a> | 17 | <a routerLink="/search" [queryParams]="{ tagOneOf: [ object.tag ] }">{{ object.tag }}</a> |
18 | </div> | 18 | </div> |
19 | 19 | ||
20 | <div> | 20 | <div> |