diff --git a/webapp/index.php b/webapp/index.php index cd84ff9..ad599da 100644 --- a/webapp/index.php +++ b/webapp/index.php @@ -574,30 +574,42 @@ if (function_exists('requireAuth')) { .client-cell { display: flex; align-items: center; - gap: 10px; + justify-content: center; + width: 100%; } .client-logo { - width: 28px; - height: 28px; - border-radius: 6px; - object-fit: cover; + width: 36px; + height: 36px; + border-radius: 8px; + object-fit: contain; background: var(--bg-tertiary); - flex-shrink: 0; + padding: 4px; + transition: transform 0.15s ease; + cursor: pointer; + } + + .client-logo:hover { + transform: scale(1.1); } .client-logo-placeholder { - width: 28px; - height: 28px; - border-radius: 6px; + width: 36px; + height: 36px; + border-radius: 8px; background: var(--purple-lighter); display: flex; align-items: center; justify-content: center; color: var(--purple-primary); - font-size: 12px; + font-size: 14px; font-weight: 600; - flex-shrink: 0; + transition: transform 0.15s ease; + cursor: pointer; + } + + .client-logo-placeholder:hover { + transform: scale(1.1); } /* Security flags */ @@ -2169,12 +2181,11 @@ if (function_exists('requireAuth')) {