Display pointer if an image is in link

This commit is contained in:
daudix
2024-09-11 20:17:49 +03:00
parent b5a7653bfe
commit a946255c44
10 changed files with 60 additions and 26 deletions

View File

@ -6,13 +6,24 @@
margin-block-start: 4rem;
}
.inline-button {
a.inline-button {
text-decoration: none;
}
button.inline-button {
-webkit-appearance: none;
appearance: none;
transition: var(--transition);
cursor: pointer;
box-shadow: var(--edge-highlight);
border: none;
&:hover {
cursor: pointer;
}
}
a.inline-button,
button.inline-button {
transition: var(--transition);
box-shadow: var(--edge-highlight);
border-radius: var(--rounded-corner);
background-color: var(--fg-muted-1);
padding: 0.75rem 1rem;
@ -20,12 +31,10 @@
font-weight: bold;
font-size: 0.875rem;
line-height: 1;
text-decoration: none;
&:hover {
background-color: var(--fg-muted-2);
color: var(--fg-color);
text-decoration: none;
}
&:active {