fixed buttons

This commit is contained in:
visionmercer 2026-04-15 12:22:43 +02:00
commit db499d84a9
4 changed files with 72 additions and 67 deletions

View file

@ -123,15 +123,23 @@ main {
padding: 1rem;
border-bottom: 1px solid var(--border);
}
.dl-btn {
/* Button style */
.btn {
border: 1px solid var(--accent);
color: var(--accent);
padding: 0.2rem 0.5rem;
border-radius: 4px;
font-size: 0.7rem;
text-decoration: none;
background: transparent;
cursor: pointer;
display: inline-flex;
align-items: center;
transition: background 0.2s, color 0.2s;
}
.dl-btn:hover {
.btn:hover {
background: var(--accent);
color: #fff;
}