Skip to content

Commit

Permalink
Fixes for preview
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeyStk committed Feb 20, 2025
1 parent fcad316 commit c175858
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<div id="preview-content-block-first"
class="border-l-2 border-orange-400 pl-2">
</div>
<div id="preview-content-block" class="my-2">
<div id="preview-content-block" class="my-2 max-w-[680px]">
</div>
<div id="preview-content-block-last"
class="border-l-2 border-orange-400 pl-2">
Expand Down
31 changes: 26 additions & 5 deletions integreat_cms/static/src/css/page_preview.css
Original file line number Diff line number Diff line change
@@ -1,14 +1,35 @@
.page-preview {
ul {
list-style: disc;
margin: 10px 0 10px 0;
margin: 10px 0;
padding-left: 50px;
}

ol {
list-style: decimal;
margin: 10px 0;
padding-left: 50px;
}

h1,
h2,
h3,
h4 {
h1 {
font-size: 2em;
font-weight: bold;
margin: 10px 0 10px 0;
}
h2 {
font-size: 1.5em;
line-height: 1.4;
font-weight: bold;
margin: 10px 0 10px 0;
}
h3 {
font-size: 1.17em;
font-weight: bold;
margin: 10px 0 10px 0;
}
h4,
h5,
h6 {
font-weight: bold;
margin: 10px 0 10px 0;
}
Expand Down

0 comments on commit c175858

Please sign in to comment.