mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 18:04:14 +01:00
Apply min-height in wiki only on preview pane (#1993)
In the commit 5a56f9699c
(3.) the min-height was applied to all wiki
elements. This resulted in huge blank spaces when viewing the wiki.
This fixes this by only applying the min-height to the preview when editing.
This commit is contained in:
parent
3ba2f85c64
commit
8f0baefe5d
1 changed files with 4 additions and 1 deletions
|
@ -13,7 +13,10 @@
|
|||
|
||||
.repository.wiki .markup {
|
||||
overflow: visible;
|
||||
min-height: 340px;
|
||||
}
|
||||
|
||||
.repository.wiki .markup[data-tab-panel="markdown-previewer"] {
|
||||
min-height: 340px; /* This height matches the markdown editor's height */
|
||||
}
|
||||
|
||||
.repository.wiki .wiki-content-parts .markup {
|
||||
|
|
Loading…
Reference in a new issue