peers and channels details / actions

This commit is contained in:
Paul Miller
2023-04-20 10:02:22 -05:00
parent ca0cc8485d
commit 5ddd7cb277
4 changed files with 121 additions and 24 deletions

View File

@@ -10,7 +10,7 @@ const SmallHeader: ParentComponent<{ class?: string }> = (props) => {
const Card: ParentComponent<{ title?: string }> = (props) => {
return (
<div class='rounded-xl p-4 flex flex-col gap-2 bg-neutral-950'>
<div class='rounded-xl p-4 flex flex-col gap-2 bg-neutral-950 overflow-x-hidden'>
{props.title && <SmallHeader>{props.title}</SmallHeader>}
{props.children}
</div>