Files
halo-theme-pix/templates/modules/gateway_fragments_logo.html
2026-03-10 17:17:32 +08:00

17 lines
498 B
HTML

<div th:remove="tag" th:fragment="logo">
<style>
.halo-logo {
width: 100%;
display: flex;
justify-content: center;
margin-bottom: 1.5em;
}
.halo-logo img {
width: 6em;
}
</style>
<div class="halo-logo">
<img th:src="${theme.config.login_page.custom_login_logo}" th:style="|width: ${theme.config.login_page.custom_login_logo_size}%|" alt="Custom Logo">
</div>
</div>