0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-08-06 04:37:37 +00:00

small changes

This commit is contained in:
Víctor Losada Hernández
2026-07-26 01:05:13 +02:00
parent 416e8bbec6
commit 16ec16c6b8
2 changed files with 7 additions and 3 deletions
@@ -186,7 +186,7 @@ const MetadataEditor = createReactClass({
<label>authors</label>
<div className='value'>
{authors.length > 0 && (
<a href={`/user/${authors[0]}`} className='author-link' title={`Owner - Click to open ${authors[0]}'s profile in a new tab`}>
<a href={`/user/${authors[0]}`} className='author-link' target="_blank" title={`Owner - Click to open ${authors[0]}'s profile in a new tab`}>
{authors[0]}{authors.length > 1 && ', '}
</a>
)}
@@ -195,10 +195,14 @@
left: 0;
width:15px;
height:15px;
rotate:-45deg;
translate:-50% -50%;
rotate:-25deg;
translate:-30% -50%;
transform: scaleY(0.7);
}
}
&:has(button) a {
padding-right:5px;
}
&:has(button:hover) {
background:#d97d7d;
}