Skip to content

Commit 1100a04

Browse files
authored
Merge pull request #457 from aurelianware/claude/fix-mobile-logo-display-ptjW0
Claude/fix mobile logo display ptj w0
2 parents aa67264 + c7c0978 commit 1100a04

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

src/portal/CloudHealthOffice.Portal/Pages/Welcome.razor.css

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -342,12 +342,24 @@
342342
/* --- Responsive --- */
343343
@media (max-width: 768px) {
344344
.w-hero {
345-
padding: 3rem 1.5rem;
345+
padding: 2rem 1.5rem;
346346
min-height: 0;
347347
}
348348

349349
.w-hero-logo {
350-
width: 120px;
350+
width: 80px;
351+
margin-bottom: 1.25rem;
352+
}
353+
354+
.w-hero-badge {
355+
font-size: 0.65rem;
356+
letter-spacing: 2px;
357+
padding: 4px 14px;
358+
margin-bottom: 1rem;
359+
}
360+
361+
.w-hero-sub {
362+
margin-bottom: 1.5rem;
351363
}
352364

353365
.w-hero-cta {

src/portal/CloudHealthOffice.Portal/Program.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,7 @@
263263
app.MapGet("/health", () => Results.Ok(new { status = "healthy", timestamp = DateTime.UtcNow }))
264264
.WithMetadata(new Microsoft.AspNetCore.Authorization.AllowAnonymousAttribute());
265265

266+
app.MapControllers();
266267
app.MapRazorPages();
267268
app.MapBlazorHub();
268269
app.MapHub<ClaimsHub>("/hubs/claims");

0 commit comments

Comments
 (0)