From b8e73ef9702763d26aabdddeae8a8c6d337808d7 Mon Sep 17 00:00:00 2001
From: ingawei
Date: Wed, 5 Oct 2022 13:09:06 -0700
Subject: [PATCH] buttons overlaying content fix
---
web/components/groups/group-overview-post.tsx | 29 +++++++++----------
1 file changed, 13 insertions(+), 16 deletions(-)
diff --git a/web/components/groups/group-overview-post.tsx b/web/components/groups/group-overview-post.tsx
index 73c30e40..999c4ade 100644
--- a/web/components/groups/group-overview-post.tsx
+++ b/web/components/groups/group-overview-post.tsx
@@ -6,12 +6,13 @@ import { Spacer } from '../layout/spacer'
import { Group } from 'common/group'
import { deleteFieldFromGroup, updateGroup } from 'web/lib/firebase/groups'
import PencilIcon from '@heroicons/react/solid/PencilIcon'
-import { DocumentRemoveIcon } from '@heroicons/react/solid'
+import { DocumentRemoveIcon, TrashIcon } from '@heroicons/react/solid'
import { createPost } from 'web/lib/firebase/api'
import { Post } from 'common/post'
import { deletePost, updatePost } from 'web/lib/firebase/posts'
import { useState } from 'react'
import { usePost } from 'web/hooks/use-post'
+import { Col } from '../layout/col'
export function GroupOverviewPost(props: {
group: Group
@@ -99,35 +100,31 @@ function RichEditGroupAboutPost(props: { group: Group; post: Post | null }) {
) : (
-
-
+
+
+
-
-
-
-
-
+
+
)}
>
)