1
0

Update styling and structure of settings.html

This commit is contained in:
2025-05-25 00:19:50 +02:00
parent 4730f7ca07
commit fb26a9265d

View File

@@ -82,10 +82,33 @@
} }
/* Buttons */ /* Buttons */
button { .buttons {
padding: 5px, 5px, 3px, 3px; display: flex; justify-content: flex-end; gap: 1rem;
margin-top: 1.4rem;
}
button.action {
padding: 0.5em 1.3em;
font-size: 1rem;
font-weight: 600;
border: none; border-radius: 6px;
cursor: pointer;
transition: background 0.2s;
}
#cancelBtn {
background: #e2e8f0;
color: #475569;
}
#cancelBtn:hover {
background: #cbd5e1;
color: #1e293b;
}
#okBtn {
background: #38bdf8;
color: #fff;
}
#okBtn:hover {
background: #0ea5e9;
} }
/* Infotext */ /* Infotext */
.ollama-info { .ollama-info {