Move card logo to bottom right with absolute positioning, fix duplication
All checks were successful
Build and Push Docker Image / build (push) Successful in 23s
Licence Check / Licence compatibility and copyright header verification (push) Successful in 41s
CI / Security audit (push) Successful in 1m14s
CI / Tests & coverage (push) Successful in 1m18s

This commit is contained in:
2026-05-20 00:37:01 +01:00
parent ff7ace9f4f
commit 712c98d817
2 changed files with 44 additions and 34 deletions

View File

@@ -1429,10 +1429,13 @@ body {
justify-content: center;
}
/* Card-specific logo wrapper (4x larger) */
/* Card-specific logo wrapper positioned at bottom right */
.download-card-logo-wrapper {
width: 64px;
height: 64px;
width: 48px;
height: 48px;
position: absolute;
bottom: 8px;
right: 8px;
}
.download-client-logo {
@@ -1450,7 +1453,7 @@ body {
}
.download-card-logo-wrapper.fallback {
font-size: 40px;
font-size: 30px;
border-radius: 4px;
}