Skip to content

Commit

Permalink
selected dialogpreview bg-color
Browse files Browse the repository at this point in the history
  • Loading branch information
marcjas committed May 10, 2023
1 parent 759ccdc commit be2f188
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/view/dialogliste/DialogPreview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,12 @@ function DialogPreview(props: Props) {
event.preventDefault();
navigate(dialogRoute(id));
};

return (
<LinkPanel
className={classNames('my-1 border !gap-0 p-2 max-w-full', styles.dialogPreview)}
className={classNames('my-1 border !gap-0 p-2 max-w-full', styles.dialogPreview, {
'bg-[#cce1ff]': detteErValgtDialog
})}
href={dialogRoute(id)}
onClick={onGoTo}
>
Expand Down

0 comments on commit be2f188

Please sign in to comment.