diff --git a/components/RoomTypeTag.tsx b/components/RoomTypeTag.tsx index 663132c..a7696b4 100644 --- a/components/RoomTypeTag.tsx +++ b/components/RoomTypeTag.tsx @@ -8,20 +8,20 @@ interface RoomTypeTagProps { } export default function RoomTypeTag(props: RoomTypeTagProps) { + const universalClassNames = + "text-xs font-bold p-1 rounded-md flex flex-row space-x-2 items-center shadow-lg"; + // show live even if it's some other type because people are in it if (props.roomStatus == RoomStatus.live) { return ( - + live ); } else if (props.roomStatus == RoomStatus.archived) { return ( - + archived ); @@ -31,10 +31,7 @@ export default function RoomTypeTag(props: RoomTypeTagProps) { switch (props.roomType) { case RoomType.now: return ( - + live @@ -42,7 +39,7 @@ export default function RoomTypeTag(props: RoomTypeTagProps) { case RoomType.scheduled: return ( - + scheduled @@ -50,7 +47,9 @@ export default function RoomTypeTag(props: RoomTypeTagProps) { case RoomType.recurring: return ( - + recurring