also add hover to link previews

This commit is contained in:
Freeplay 2023-02-23 22:03:38 -05:00
parent 5fe9ee27ef
commit 842d48c4a8
2 changed files with 7 additions and 2 deletions

View File

@ -72,6 +72,10 @@ const urls = props.note.text ? extractUrlFromMfm(mfm.parse(props.note.text)) : n
} }
} }
> .mk-url-preview {
margin-top: 8px;
}
&.collapsed { &.collapsed {
position: relative; position: relative;
max-height: 9em; max-height: 9em;

View File

@ -214,9 +214,10 @@ onUnmounted(() => {
border: 1px solid var(--divider); border: 1px solid var(--divider);
border-radius: 8px; border-radius: 8px;
overflow: hidden; overflow: hidden;
transition: background .2s;
&:hover { &:hover, &:focus-within {
text-decoration: none; text-decoration: none;
background-color: var(--panelHighlight);
> article > header > h1 { > article > header > h1 {
text-decoration: underline; text-decoration: underline;
} }