style: .btn als flex-Button mit konsistentem Styling

Ermöglicht die Verwendung von .btn auf <button>-Elementen
(nicht nur <a>-Links) mit einheitlicher Ausrichtung, Schrift
und Cursor.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-08-14 21:32:19 +02:00
co-authored by Copilot
parent 817763887a
commit c877abf302
+8 -1
View File
@@ -195,13 +195,20 @@ h2 {
}
.btn {
display: inline-block;
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 44px;
padding: 0.7rem 1rem;
border: 2px solid #000;
background: none;
text-decoration: none;
color: #000;
font-family: inherit;
font-size: inherit;
font-weight: bold;
cursor: pointer;
box-sizing: border-box;
}
code {