From 212a6a341114b47e6a055aeaa08b12b46f14797d Mon Sep 17 00:00:00 2001 From: Titouan Rigoudy Date: Mon, 2 Aug 2021 20:03:46 -0400 Subject: [PATCH] Style h3. --- src/index.css | 4 ++++ src/modules/room/RoomChatHeader.tsx | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/index.css b/src/index.css index b862b3f..f84e018 100644 --- a/src/index.css +++ b/src/index.css @@ -27,3 +27,7 @@ body, .text-input { @apply px-2 py-1 rounded border border-gray-400; } + +h3 { + @apply font-bold text-yellow-800 text-xl; +} diff --git a/src/modules/room/RoomChatHeader.tsx b/src/modules/room/RoomChatHeader.tsx index a62f57e..958eaf6 100644 --- a/src/modules/room/RoomChatHeader.tsx +++ b/src/modules/room/RoomChatHeader.tsx @@ -10,7 +10,7 @@ interface InnerProps { const InnerHeader: FC = ({ title, children }) => (
-

{title}

+

{title}

{children}
);