dev #60
@@ -53,20 +53,15 @@ body {
|
||||
.header-logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-start; /* Align to left instead of center */
|
||||
justify-content: center;
|
||||
gap: 1rem;
|
||||
padding: 0.5rem 0; /* Add some vertical padding */
|
||||
}
|
||||
|
||||
.header-logo .logo {
|
||||
height: 80px;
|
||||
height: 60px;
|
||||
width: auto;
|
||||
/* Clean display for new logo */
|
||||
object-fit: contain;
|
||||
object-position: center;
|
||||
/* Remove white background and make it fit better */
|
||||
background: transparent;
|
||||
/* Optional: slight drop shadow for visibility */
|
||||
filter: drop-shadow(0 1px 3px rgba(0,0,0,0.2));
|
||||
}
|
||||
|
||||
.header-text {
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<header class="app-header">
|
||||
<div class="header-content">
|
||||
<div class="header-logo">
|
||||
<img src="/logo/NFOguardLogoPlain.png" alt="NFOGuard Logo" class="logo">
|
||||
<img src="/logo/NFOGuardLogo.png" alt="NFOGuard Logo" class="logo">
|
||||
<div class="header-text">
|
||||
<h1>NFOGuard</h1>
|
||||
<p>Database Management & Reporting</p>
|
||||
|
||||
+1
-1
@@ -72,7 +72,7 @@ def setup_static_files(app: FastAPI) -> None:
|
||||
favicon_paths = [
|
||||
os.path.join(logo_path, "favicon.ico"),
|
||||
os.path.join(static_path, "favicon.ico"),
|
||||
os.path.join(logo_path, "NFOguardLogoPlain.png") # Fallback to logo
|
||||
os.path.join(logo_path, "NFOGuardLogo.png") # Fallback to new logo
|
||||
]
|
||||
|
||||
for favicon_path in favicon_paths:
|
||||
|
||||
Reference in New Issue
Block a user