fix: message manager colors + links rerender when switching category

This commit is contained in:
Sonny
2023-04-22 00:11:24 +02:00
parent 05ab09f7bc
commit 01bdeb7d73
2 changed files with 2 additions and 1 deletions

View File

@@ -6,6 +6,7 @@ import LinkItem from "./LinkItem";
import styles from "./links.module.scss";
export default function Links({ category }: { category: Category }) {
console.log("render", category);
if (category === null) {
return (
<div className={styles["no-category"]}>

View File

@@ -7,7 +7,7 @@
font-style: italic;
font-size: 0.9em;
color: $dark-blue;
background-color: $light-blue;
background-color: $lightest-blue;
padding: 10px;
border-radius: 3px;
animation: fadein 250ms both;