modified: juconnect-strict-theme-v3/juconnect-strict/header.php

modified:   juconnect-strict-theme-v3/juconnect-strict/style.css
This commit is contained in:
2026-02-12 19:21:00 +01:00
parent aef2ef7c14
commit 670e0bf307
2 changed files with 7 additions and 6 deletions

View File

@@ -19,10 +19,10 @@
<a class="brand" href="<?php echo esc_url(home_url('/')); ?>" aria-label="Startseite">
<img
class="brand__logo"
src="<?php echo esc_url(get_template_directory_uri().'/assets/img/juconnect_icon.svg'); ?>"
data-logo-light="<?php echo esc_url(get_template_directory_uri().'/assets/img/juconnect_icon.svg'); ?>"
data-logo-dark="<?php echo esc_url(get_template_directory_uri().'/assets/img/juconnect_icon_light.svg'); ?>"
alt="JuConnect Icon" />
src="<?php echo esc_url(get_template_directory_uri().'/assets/img/juconnect.svg'); ?>"
data-logo-light="<?php echo esc_url(get_template_directory_uri().'/assets/img/juconnect.svg'); ?>"
data-logo-dark="<?php echo esc_url(get_template_directory_uri().'/assets/img/juconnect_light.svg'); ?>"
alt="JuConnect Logo" />
<div class="brand__text">
<div class="brand__name"><?php bloginfo('name'); ?></div>
<div class="brand__tagline"><?php bloginfo('description'); ?></div>

View File

@@ -188,8 +188,9 @@ a{ color: inherit; }
align-items:center;
}
.brand__logo{
width: 44px; height: 44px;
border-radius: 12px;
width: clamp(120px, 16vw, 170px);
height: auto;
max-height: 44px;
}
.brand__name{ font-weight: 800; letter-spacing: .2px; }
.brand__tagline{ font-size: var(--fs-s); color: var(--muted); }