diff options
author | crupest <crupest@outlook.com> | 2020-09-03 19:57:49 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-09-03 19:57:49 +0800 |
commit | d8a2ca7d0ad9afdd01c654bea29b2a6c2b92ff2c (patch) | |
tree | 05a7a1ceee83be0409ad7f9de4932e46306ef3d5 /Timeline/ClientApp/src/app/views/timeline-common/TimelinePostEdit.tsx | |
parent | 7d70d0270b5a070b754bca8e1d740c86fd9ac48d (diff) | |
download | timeline-d8a2ca7d0ad9afdd01c654bea29b2a6c2b92ff2c.tar.gz timeline-d8a2ca7d0ad9afdd01c654bea29b2a6c2b92ff2c.tar.bz2 timeline-d8a2ca7d0ad9afdd01c654bea29b2a6c2b92ff2c.zip |
...
Diffstat (limited to 'Timeline/ClientApp/src/app/views/timeline-common/TimelinePostEdit.tsx')
-rw-r--r-- | Timeline/ClientApp/src/app/views/timeline-common/TimelinePostEdit.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Timeline/ClientApp/src/app/views/timeline-common/TimelinePostEdit.tsx b/Timeline/ClientApp/src/app/views/timeline-common/TimelinePostEdit.tsx index 42f83b52..dfa2f879 100644 --- a/Timeline/ClientApp/src/app/views/timeline-common/TimelinePostEdit.tsx +++ b/Timeline/ClientApp/src/app/views/timeline-common/TimelinePostEdit.tsx @@ -1,4 +1,5 @@ import React from "react"; +import clsx from "clsx"; import { useTranslation } from "react-i18next"; import Svg from "react-inlinesvg"; import { Button, Spinner, Row, Col, Form } from "react-bootstrap"; @@ -183,7 +184,10 @@ const TimelinePostEdit: React.FC<TimelinePostEditProps> = (props) => { }, []); return ( - <div ref={containerRef} className="container-fluid fixed-bottom bg-light"> + <div + ref={containerRef} + className={clsx("container-fluid bg-light", props.className)} + > <Row> <Col className="px-1 py-1"> {kind === "text" ? ( |