Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions frontend/packages/client/src/App.sass
Original file line number Diff line number Diff line change
Expand Up @@ -534,8 +534,6 @@ span[data-tooltip]
-o-animation: fadein 0.5s
animation: fadein 0.5s

.word-break-all
word-break: break-all
.word-break
word-break: break-word
.line-clamp-2
Expand Down Expand Up @@ -565,8 +563,6 @@ span[data-tooltip]
max-width: 44px
width: 44px
text-align: center !important
.word-break-all
word-break: break-all

.pulse
.title-text
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ const StepOne = ({
toolbar={{ options, inline, list, link }}
editorState={localEditorState}
toolbarClassName="toolbarClassName"
wrapperClassName="border-light rounded-sm word-break-all"
wrapperClassName="border-light rounded-sm"
editorClassName="px-4 content"
onEditorStateChange={onEditorChange}
toolbarCustomButtons={[<AddImageOption addImage={addImage} />]}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const StepThree = ({ stepsData, setStepValid }) => {
<ProposalStatus proposal={proposal} />
<h1 className="title mt-5 is-3">{stepsData[0]?.title}</h1>
<div
className="mt-6 mb-5 proposal-copy word-break-all content"
className="mt-6 mb-5 proposal-copy content"
dangerouslySetInnerHTML={{
__html: htmlBody,
}}
Expand Down
2 changes: 1 addition & 1 deletion frontend/packages/client/src/pages/Proposal.js
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ export default function ProposalPage() {
<h1 className="title mt-5 is-3">{proposal.name}</h1>
{proposal.body && (
<div
className="mt-6 mb-6 proposal-copy transition-all word-break-all content"
className="mt-6 mb-6 proposal-copy transition-all content"
dangerouslySetInnerHTML={{
__html: htmlBody,
}}
Expand Down