Fix: Button has inconsistent styling

This commit is contained in:
Donatas Kirda 2024-05-15 18:08:01 +03:00
parent 499fd6fa5b
commit 96715b1512
Signed by: bloodwiing
GPG Key ID: 63020D8D3F4A164F

View File

@ -39,4 +39,24 @@ h1, h2, h3, h4, h5, h6, p, span {
button {
border: none;
font-size: 1rem;
cursor: pointer;
background: none;
}
button.button {
background: var(--accent-very-dim);
border-radius: 4px;
&:hover {
background: var(--accent-dim);
}
}
button.button.transparent {
background: transparent;
border-radius: 4px;
&:hover {
background: var(--accent-dim);
}
}