fix(#1307) add appearance:none to .btn to strip browser UA button chrome

This commit is contained in:
damocles 2026-06-04 21:02:56 +02:00 committed by mara
commit cf6479b3a9

View file

@ -108,6 +108,11 @@ code {
text-transform: uppercase;
letter-spacing: 0.1em;
background: transparent;
/* Strip browser UA button chrome (solid fill, system text colour).
Without this, native <button> + <input type="submit"> elements
ignore our background:transparent and colour in some browsers. */
-webkit-appearance: none;
appearance: none;
border: 1px solid;
padding: 0.25em 0.8em;
cursor: pointer;