fix: Buttons in ExpertProfile nicht mehr vollbreit (align-self: flex-start)

Buttons in sectionHeader (flex-direction: column) streckten sich auf
volle Containerbreite. align-self: flex-start begrenzt die Breite auf
min-width + Textinhalt.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Thomas Reitz 2026-03-14 14:34:24 +01:00
parent da4a036e8a
commit 1bba4abac3

View file

@ -291,6 +291,7 @@
transition: background 0.15s; transition: background 0.15s;
white-space: nowrap; white-space: nowrap;
box-sizing: border-box; box-sizing: border-box;
align-self: flex-start;
} }
.btnPrimary:hover:not(:disabled) { .btnPrimary:hover:not(:disabled) {
@ -316,6 +317,7 @@
transition: all 0.15s; transition: all 0.15s;
white-space: nowrap; white-space: nowrap;
box-sizing: border-box; box-sizing: border-box;
align-self: flex-start;
} }
.btnSecondary:hover { .btnSecondary:hover {