Split away from table

This commit is contained in:
Andrew Novac
2022-12-12 10:52:17 -05:00
parent 30be7d8498
commit 3a001e8ff1
4 changed files with 11 additions and 21 deletions

View File

@@ -5,7 +5,7 @@ import requests
from base64 import b64encode
from dotenv import load_dotenv, find_dotenv
from flask import Flask, Response, jsonify, render_template, templating, request
from flask import Flask, Response, render_template, request
load_dotenv(find_dotenv())
@@ -96,7 +96,7 @@ def getTemplate():
templates = json.loads(file.read())
return templates["templates"][templates["current-theme"]]
except Exception as e:
print(f"Failed to load templates.")
print(f"Failed to load templates.\r\n```{e}```")
return FALLBACK_THEME

View File

@@ -3,7 +3,6 @@
<div xmlns="http://www.w3.org/1999/xhtml" class="container">
<style>
.main {
/*margin-top: 40px;*/
display: flex;
}
@@ -63,8 +62,6 @@
}
#bars {
width: 40px;
height: 30px;
bottom: 23px;
position: absolute;
margin: -20px 0 0 0px;

Before

Width:  |  Height:  |  Size: 5.8 KiB

After

Width:  |  Height:  |  Size: 5.7 KiB