diff --git a/src/views/ServersView.vue b/src/views/ServersView.vue index aba3cf7..813bbcb 100644 --- a/src/views/ServersView.vue +++ b/src/views/ServersView.vue @@ -26,6 +26,9 @@ N/A
{{ server.version_name }}
+ @@ -44,6 +47,7 @@ interface GameServer { max_players: number | null; version_name: string | null; ping_proxy_server: number | null; + bluemap_url: string | null; } const servers = ref([]); @@ -140,4 +144,20 @@ onUnmounted(() => { margin-bottom: 1rem; font-weight: bold; } +.bluemap-link { + margin-top: 0.5rem; + text-align: right; +} +.bluemap-link a { + display: inline-block; + padding: 0.25rem 0.5rem; + background-color: #3eaf7c; + color: white; + text-decoration: none; + border-radius: 4px; + font-size: 0.9em; +} +.bluemap-link a:hover { + background-color: #339265; +}