Browse Source
Merge pull request #67 from Saibamen/lighthouse_improvements
[Lighthouse] Some improvements
pull/71/head^2
Louis Lam
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
4 additions and
2 deletions
-
index.html
-
src/layouts/Layout.vue
|
@ -5,6 +5,8 @@ |
|
|
<link rel="icon" type="image/svg+xml" href="/icon.svg" /> |
|
|
<link rel="icon" type="image/svg+xml" href="/icon.svg" /> |
|
|
<link rel="apple-touch-icon" href="/apple-touch-icon.png"> |
|
|
<link rel="apple-touch-icon" href="/apple-touch-icon.png"> |
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
|
|
|
|
|
<meta name="theme-color" content="#5cdd8b" /> |
|
|
|
|
|
<meta name="description" content="Uptime Kuma monitoring tool" /> |
|
|
<title>Uptime Kuma</title> |
|
|
<title>Uptime Kuma</title> |
|
|
</head> |
|
|
</head> |
|
|
<body> |
|
|
<body> |
|
|
|
@ -9,7 +9,7 @@ |
|
|
<!-- Desktop header --> |
|
|
<!-- Desktop header --> |
|
|
<header class="d-flex flex-wrap justify-content-center py-3 mb-3 border-bottom" v-if="! $root.isMobile"> |
|
|
<header class="d-flex flex-wrap justify-content-center py-3 mb-3 border-bottom" v-if="! $root.isMobile"> |
|
|
<router-link to="/dashboard" class="d-flex align-items-center mb-3 mb-md-0 me-md-auto text-dark text-decoration-none"> |
|
|
<router-link to="/dashboard" class="d-flex align-items-center mb-3 mb-md-0 me-md-auto text-dark text-decoration-none"> |
|
|
<object class="bi me-2 ms-4" width="40" height="40" data="/icon.svg"></object> |
|
|
<object class="bi me-2 ms-4" width="40" height="40" data="/icon.svg" alt="Logo"></object> |
|
|
<span class="fs-4 title">Uptime Kuma</span> |
|
|
<span class="fs-4 title">Uptime Kuma</span> |
|
|
</router-link> |
|
|
</router-link> |
|
|
|
|
|
|
|
@ -37,7 +37,7 @@ |
|
|
<div class="container-fluid"> |
|
|
<div class="container-fluid"> |
|
|
Uptime Kuma - |
|
|
Uptime Kuma - |
|
|
Version: {{ $root.info.version }} - |
|
|
Version: {{ $root.info.version }} - |
|
|
<a href="https://github.com/louislam/uptime-kuma/releases" target="_blank">Check Update On GitHub</a> |
|
|
<a href="https://github.com/louislam/uptime-kuma/releases" target="_blank" rel="noopener">Check Update On GitHub</a> |
|
|
</div> |
|
|
</div> |
|
|
</footer> |
|
|
</footer> |
|
|
|
|
|
|
|
|