Skip to content
Snippets Groups Projects
Unverified Commit cba66c92 authored by かっこかり's avatar かっこかり Committed by GitHub
Browse files

fix(frontend): コードエディタが正しく表示されない問題を修正 (#12418)

* (fix) コードエディタが正しく表示されない問題を修正

* Update Changelog
parent 44a378c4
No related branches found
No related tags found
No related merge requests found
......@@ -23,6 +23,7 @@
- Enhance: 絵文字のオートコンプリート機能強化 #12364
- fix: 「設定のバックアップ」で一部の項目がバックアップに含まれていなかった問題を修正
- Fix: ウィジェットのジョブキューにて音声の発音方法変更に追従できていなかったのを修正 #12367
- Fix: コードエディタが正しく表示されない問題を修正
### Server
- Enhance: MFM `$[ruby ]` が他ソフトウェアと連合されるように
......
......@@ -139,6 +139,10 @@ watch(v, () => {
height: 100%;
}
.textarea, .codeEditorHighlighter {
margin: 0;
}
.textarea {
position: absolute;
top: 0;
......@@ -154,6 +158,8 @@ watch(v, () => {
background-color: transparent;
border: 0;
outline: 0;
min-width: calc(100% - 24px);
height: calc(100% - 24px);
padding: 12px;
line-height: 1.5em;
font-size: 1em;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment