Browse Source

box-change

main
Cailean Finn 3 months ago
parent
commit
7abd518765
  1. 2
      app.py
  2. 4
      static/assets/styles.css

2
app.py

@ -371,7 +371,7 @@ class WikiApp(Flask):
comment = comments[-1] if comments else None
# Insert the table before the comment
if comment:
if comment and table is not None:
comment.insert_before(table.extract())
return soup.prettify()

4
static/assets/styles.css

@ -13,6 +13,10 @@ body {
height: 100vh;
}
.table-cont {
overflow-wrap: anywhere;
}
.main-cont {
display: flex;
flex-direction: column;

Loading…
Cancel
Save