This commit is contained in:
Roman Pyrih
2025-12-10 10:13:48 +01:00
parent d10c7001e0
commit a5cd1c751f
4 changed files with 59 additions and 2 deletions

View File

@@ -128,6 +128,11 @@ footer#footer {
background-size: 30px;
background-position: center;
border-radius: 5px;
transition: all 250ms ease-in-out;
&:hover {
filter: brightness(1.2);
}
&.facebook {
background-color: #1877f2;
@@ -142,3 +147,31 @@ footer#footer {
}
}
}
.product-additional-info {
.social-sharing {
ul {
li {
background-color: #d0d0d0;
background-size: 30px;
background-position: center;
border-radius: 5px;
transition: all 250ms ease-in-out;
&:hover {
filter: brightness(1.2);
}
&.facebook {
background-color: #1877f2;
}
&.twitter {
background-color: #1da1f2;
}
&.pinterest {
background-color: #e60023;
}
}
}
}
}