Skip to content

Commit

Permalink
Merge pull request #309 from ODOICHON/fix/#197
Browse files Browse the repository at this point in the history
[fix] ํ…์ŠคํŠธ ์—๋””ํ„ฐ ๋ฒ„๊ทธ ์ˆ˜์ •
  • Loading branch information
JunJongHun authored Sep 30, 2024
2 parents 58f893d + 9e760ad commit 9ddb8f0
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/components/Community/Quill/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ export default function CommunityQuill({ queryParam }: CommunityQuillProps) {
}}
onChange={onChange}
modules={modules}
scrollingContainer="html"
/>
</span>
</section>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Community/Quill/styles.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -129,4 +129,4 @@
& > option[value=''][disabled] {
display: none;
}
}
}
1 change: 1 addition & 0 deletions src/components/Introduce/Quill/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ export default function IntroduceQuill() {
}}
onChange={onChange}
modules={modules}
scrollingContainer="html"
/>
</span>
</section>
Expand Down
1 change: 1 addition & 0 deletions src/components/Trade/Quill/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ export default function TradeQuill({
onChange={(value) => setForm((prev) => ({ ...prev, code: value }))}
modules={modules}
placeholder="์‚ฌ์ง„ 5์žฅ ์ด์ƒ์€ ํ•„์ˆ˜์ž…๋‹ˆ๋‹ค. 5์žฅ ์ด์ƒ(๊ฑด๋ฌผ ์™ธ๊ด€, ๋‚ด๋ถ€ ํฌํ•จ) ์—…๋กœ๋“œ ๋˜์ง€ ์•Š์„ ์‹œ, ๋ฐ˜๋ ค๋ฉ๋‹ˆ๋‹ค."
scrollingContainer="html"
/>
</span>
</section>
Expand Down
4 changes: 4 additions & 0 deletions src/styles/editor.scss
Original file line number Diff line number Diff line change
Expand Up @@ -35,22 +35,26 @@
font-family: 'NanumSquareAcB';
}
& ol {
font-size: 1.3rem;
display: block;
list-style-type: decimal;
margin-block-start: 1em;
margin-block-end: 1em;
margin-inline-start: 0px;
margin-inline-end: 0px;
padding-inline-start: 40px;
padding-left: 0px !important
}
& ul {
font-size: 1.3rem;
display: block;
list-style-type: disc;
margin-block-start: 1em;
margin-block-end: 1em;
margin-inline-start: 0px;
margin-inline-end: 0px;
padding-inline-start: 40px;
padding-left: 0px !important
}

& li {
Expand Down

0 comments on commit 9ddb8f0

Please sign in to comment.