Procházet zdrojové kódy

refactor: added verified station icon to station title on station page

Kristian Vos před 3 roky
rodič
revize
cd8e9c62d3
1 změnil soubory, kde provedl 12 přidání a 0 odebrání
  1. 12 0
      frontend/src/pages/Station/index.vue

+ 12 - 0
frontend/src/pages/Station/index.vue

@@ -72,6 +72,14 @@
 							<div id="station-info">
 								<div class="row" id="station-name">
 									<h1>{{ station.displayName }}</h1>
+									<i
+										v-if="station.type === 'official'"
+										class="material-icons verified-station"
+										content="Verified Station"
+										v-tippy
+									>
+										check_circle
+									</i>
 									<a href="#">
 										<!-- Favorite Station Button -->
 										<i
@@ -2467,6 +2475,10 @@ export default {
 							color: var(--primary-color);
 						}
 					}
+
+					.verified-station {
+						color: var(--primary-color);
+					}
 				}
 
 				p {