Change color when hovering over share buttons

This commit is contained in:
BBaoVanC 2023-01-22 16:31:08 -06:00
parent 629b3758b9
commit 8ef1e3840a
Signed by: bbaovanc
GPG Key ID: 18089E4E3CCF1D3A
1 changed files with 3 additions and 4 deletions

View File

@ -424,16 +424,15 @@
justify-content: center;
}
.share-buttons button,
.share-buttons a {
background-color: var(--background-2);
color: var(--text-2);
padding: 4px;
border-radius: 8px;
}
.share-buttons button {
border: none;
.share-buttons a:hover {
background-color: var(--background-3);
color: var(--text-3);
}
.share-buttons svg {