fix: tiktok icon size
All checks were successful
Build / build (push) Successful in 4m8s
Build / deploy-stage (push) Successful in 2m38s
Build / switch-stage (push) Successful in 1m58s

This commit is contained in:
2024-12-14 01:20:10 +01:00
parent a16588c220
commit de23d5214c

View File

@@ -1,26 +1,41 @@
.ci { .ci,
a[href*="instagram.com"],
a[href*="tiktok.com"],
a[href*="linkedin.com"],
a[href*="twitter.com"],
a[href*="x.com"] {
display: inline-block;
vertical-align: middle;
line-height: 1;
position: relative; position: relative;
} }
.ci::before { .ci::before,
position: relative; a[href*="instagram.com*"]::before,
top: 3px; a[href*="tiktok.com"]::before,
a[href*="linkedin.com"]::before,
a[href*="x.com"]::before {
display: inline-block; display: inline-block;
content: ' '; content: ' ';
width: 1em; width: 1em;
height: 1em; height: 1em;
mask-size: 1em; mask-size: contain;
mask-repeat: no-repeat; mask-repeat: no-repeat;
background-color: currentColor;
mask-position: center; mask-position: center;
background-color: currentColor;
vertical-align: middle;
} }
.ci-instagram::before { .ci-instagram::before {
mask-image: url(../Icons/instagram.svg); mask-image: url(../Icons/instagram.svg);
} }
.ci-tiktok::before { .ci-tiktok::before {
mask-image: url(../Icons/tiktok.svg); mask-image: url(../Icons/tiktok.svg);
width: 0.9em;
height: 0.9em;
} }
.ci-linkedin::before { .ci-linkedin::before {
mask-image: url(../Icons/linkedin.svg); mask-image: url(../Icons/linkedin.svg);
} }
@@ -34,24 +49,13 @@
mask-image: url(../Icons/phone.svg); mask-image: url(../Icons/phone.svg);
} }
a[href*="instagram.com"], a[href*="tiktok.com"], a[href*="linkedin.com"], a[href*="twitter.com"], a[href*="x.com"] {
position: relative;
top: 3px;
display: inline-block;
content: ' ';
width: 1em;
height: 1em;
mask-size: 1em;
mask-repeat: no-repeat;
background-color: currentColor;
mask-position: center;
}
a[href*="instagram.com*"]::before { a[href*="instagram.com*"]::before {
mask-image: url(../Icons/instagram.svg); mask-image: url(../Icons/instagram.svg);
} }
a[href*="tiktok.com"]::before { a[href*="tiktok.com"]::before {
mask-image: url(../Icons/tiktok.svg); mask-image: url(../Icons/tiktok.svg);
width: 0.9em;
height: 0.9em;
} }
a[href*="linkedin.com"]::before { a[href*="linkedin.com"]::before {
mask-image: url(../Icons/linkedin.svg); mask-image: url(../Icons/linkedin.svg);
@@ -60,7 +64,6 @@ a[href*="x.com"]::before {
mask-image: url(../Icons/x.svg); mask-image: url(../Icons/x.svg);
} }
/* Newly added icons */
.ci-angle-right::before { .ci-angle-right::before {
mask-image: url(../Icons/angle-right.svg); mask-image: url(../Icons/angle-right.svg);
} }