|
@ -8,7 +8,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-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"></object> |
|
|
<span class="fs-4 title">Uptime Kuma</span> |
|
|
<span class="fs-4 title">Uptime Kuma</span> |
|
|
</router-link> |
|
|
</router-link> |
|
@ -21,7 +21,7 @@ |
|
|
|
|
|
|
|
|
<!-- Mobile header --> |
|
|
<!-- Mobile header --> |
|
|
<header class="d-flex flex-wrap justify-content-center mt-3 mb-3" v-else> |
|
|
<header class="d-flex flex-wrap justify-content-center mt-3 mb-3" v-else> |
|
|
<router-link to="/dashboard" class="d-flex align-items-center text-decoration-none"> |
|
|
<router-link to="/dashboard" class="d-flex align-items-center text-dark text-decoration-none"> |
|
|
<object class="bi" width="40" height="40" data="/icon.svg"></object> |
|
|
<object class="bi" width="40" height="40" data="/icon.svg"></object> |
|
|
<span class="fs-4 title ms-2">Uptime Kuma</span> |
|
|
<span class="fs-4 title ms-2">Uptime Kuma</span> |
|
|
</router-link> |
|
|
</router-link> |
|
@ -33,6 +33,14 @@ |
|
|
<Login v-if="! $root.loggedIn && $root.allowLoginDialog" /> |
|
|
<Login v-if="! $root.loggedIn && $root.allowLoginDialog" /> |
|
|
</main> |
|
|
</main> |
|
|
|
|
|
|
|
|
|
|
|
<footer> |
|
|
|
|
|
<div class="container-fluid"> |
|
|
|
|
|
Uptime Kuma - |
|
|
|
|
|
Version: {{ $root.info.version }} - |
|
|
|
|
|
<a href="https://github.com/louislam/uptime-kuma/releases" target="_blank">Check Update On GitHub</a> |
|
|
|
|
|
</div> |
|
|
|
|
|
</footer> |
|
|
|
|
|
|
|
|
<!-- Mobile Only --> |
|
|
<!-- Mobile Only --> |
|
|
<div style="width: 100%;height: 60px;" v-if="$root.isMobile"></div> |
|
|
<div style="width: 100%;height: 60px;" v-if="$root.isMobile"></div> |
|
|
<nav class="bottom-nav" v-if="$root.isMobile"> |
|
|
<nav class="bottom-nav" v-if="$root.isMobile"> |
|
@ -87,7 +95,7 @@ export default { |
|
|
height: 60px; |
|
|
height: 60px; |
|
|
width: 100%; |
|
|
width: 100%; |
|
|
left: 0; |
|
|
left: 0; |
|
|
background-color: var(--background-secondary); |
|
|
background-color: #fff; |
|
|
box-shadow: 0 15px 47px 0 rgba(0, 0, 0, 0.05), 0 5px 14px 0 rgba(0, 0, 0, 0.05); |
|
|
box-shadow: 0 15px 47px 0 rgba(0, 0, 0, 0.05), 0 5px 14px 0 rgba(0, 0, 0, 0.05); |
|
|
text-align: center; |
|
|
text-align: center; |
|
|
white-space: nowrap; |
|
|
white-space: nowrap; |
|
@ -130,6 +138,14 @@ export default { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
main { |
|
|
main { |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
footer { |
|
|
|
|
|
color: #AAA; |
|
|
|
|
|
font-size: 13px; |
|
|
margin-bottom: 30px; |
|
|
margin-bottom: 30px; |
|
|
|
|
|
margin-left: 10px; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
</style> |
|
|
</style> |
|
|