Files
agent0_homepage/docs/stylesheets/modules/header-logo.scss
T
tfw a34275a7e9 Enhance team page styling and structure adjustments.
Removed `pointer-events: none` to enable hover effects on images and updated font weight for better visibility. Added new CSS for tooltips and modified navigation/yaml configuration for better presentation.
2025-05-15 16:05:24 +02:00

34 lines
528 B
SCSS

// Header logo and title styling
// Seitentitel ausblenden
.md-header__title {
.md-header__topic {
// Der erste Eintrag (Seitenname) wird ausgeblendet
&:first-child {
display: none;
}
}
}
// Logo vergrößern
.md-header__button.md-logo {
padding: 2.2rem;
//padding-left: 0.5rem;
img, svg {
width: 325px; // Größeres Logo (Standardwert ist 40px)
height: auto;
}
}
// Navigationsleiste anpassen
.md-header {
height: auto;
&__inner {
padding: 0.5rem;
max-width: 98%;
}
}