fix(web-ui): Welcome page styling (#5466)

This commit is contained in:
Noklef
2026-08-07 23:45:59 +10:00
committed by GitHub
parent 0784774fec
commit e9ed5188f5
5 changed files with 67 additions and 39 deletions

View File

@@ -6,12 +6,12 @@
</head>
<body id="app" v-cloak>
<Navbar-Simple></Navbar-Simple>
<div class="container py-5">
<div class="row justify-content-center">
<div class="col-md-8 col-lg-6">
<div class="card">
<div class="card-body text-center">
<img src="/images/logo-sunshine-45.png" height="45" alt="Sunshine" class="mb-3">
<h1 class="h3 mb-3">{{ $t('logout.logged_out') }}</h1>
<p class="text-muted mb-4">{{ $t('logout.logged_out_desc') }}</p>
<a class="btn btn-primary" href="./">
@@ -29,12 +29,14 @@
import { initApp } from './init'
import { loadAutoTheme } from './theme'
import { LogIn } from '@lucide/vue'
import NavbarSimple from './NavbarSimple.vue'
loadAutoTheme();
const app = createApp({
components: {
LogIn,
NavbarSimple,
},
});