diff --git a/app.py b/app.py index defbe8f..97a590f 100644 --- a/app.py +++ b/app.py @@ -452,6 +452,9 @@ def studios(id, tab): name_len=len(data["title"]), ) +@app.get("/editor") +def editor(): + return render_template("editor.html") @app.errorhandler(werkexcept.NotFound) def err404(e: Exception): diff --git a/static/master-styles.css b/static/master-styles.css index 9423368..cb2d270 100644 --- a/static/master-styles.css +++ b/static/master-styles.css @@ -504,4 +504,12 @@ body { display: block; text-overflow: ellipsis; white-space: nowrap; +} + +.editor-wrapper { + position: fixed; + bottom: 0; + left: 0; + width: 100%; + height: 96%; } \ No newline at end of file diff --git a/templates/_base.html b/templates/_base.html index 2649435..895a346 100644 --- a/templates/_base.html +++ b/templates/_base.html @@ -52,6 +52,8 @@