made delete red, moved button for regular posts (#1008)

This commit is contained in:
ingawei 2022-10-05 16:21:03 -05:00 committed by GitHub
parent 10f0bbc63d
commit 189da4a0cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 21 deletions

View File

@ -121,7 +121,7 @@ function RichEditGroupAboutPost(props: { group: Group; post: Post | null }) {
deleteGroupAboutPost() deleteGroupAboutPost()
}} }}
> >
<TrashIcon className="inline h-5 w-5" /> <TrashIcon className="inline h-5 w-5 text-red-500" />
</Button> </Button>
</Row> </Row>
</Col> </Col>

View File

@ -207,11 +207,11 @@ export function RichEditPost(props: { post: Post }) {
</Row> </Row>
</> </>
) : ( ) : (
<> <Col>
<div className="relative"> <Content content={post.content} />
<div className="absolute top-0 right-0 z-10 space-x-2"> <Row className="place-content-end">
<Button <Button
color="gray" color="gray-white"
size="xs" size="xs"
onClick={() => { onClick={() => {
setEditing(true) setEditing(true)
@ -219,13 +219,8 @@ export function RichEditPost(props: { post: Post }) {
}} }}
> >
<PencilIcon className="inline h-4 w-4" /> <PencilIcon className="inline h-4 w-4" />
Edit
</Button> </Button>
</div> </Row>
</Col>
<Content content={post.content} />
<Spacer h={2} />
</div>
</>
) )
} }