mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 04:14:39 +03:00
Fix performer icon link padding (#1843)
* fix performer url icon link padding
This commit is contained in:
@@ -221,7 +221,7 @@ export const Performer: React.FC = () => {
|
||||
<Icon icon="heart" />
|
||||
</Button>
|
||||
{performer.url && (
|
||||
<Button className="minimal">
|
||||
<Button className="minimal icon-link">
|
||||
<a
|
||||
href={TextUtils.sanitiseURL(performer.url)}
|
||||
className="link"
|
||||
@@ -233,7 +233,7 @@ export const Performer: React.FC = () => {
|
||||
</Button>
|
||||
)}
|
||||
{performer.twitter && (
|
||||
<Button className="minimal">
|
||||
<Button className="minimal icon-link">
|
||||
<a
|
||||
href={TextUtils.sanitiseURL(
|
||||
performer.twitter,
|
||||
@@ -248,7 +248,7 @@ export const Performer: React.FC = () => {
|
||||
</Button>
|
||||
)}
|
||||
{performer.instagram && (
|
||||
<Button className="minimal">
|
||||
<Button className="minimal icon-link">
|
||||
<a
|
||||
href={TextUtils.sanitiseURL(
|
||||
performer.instagram,
|
||||
|
||||
@@ -37,6 +37,15 @@
|
||||
.instagram {
|
||||
color: pink;
|
||||
}
|
||||
|
||||
.icon-link {
|
||||
padding: 0;
|
||||
|
||||
a {
|
||||
display: inline-block;
|
||||
padding: $btn-padding-y $btn-padding-x;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user