Skip to content

Commit 479f5fc

Browse files
fix: change background to white; add page title
* add: - white background - add title to be shown in browser tab * Update style.css --------- Co-authored-by: Nicolas Müller <nicolas.mueller@aisec.fraunhofer.de>
1 parent 6c837ef commit 479f5fc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/assets/style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
body {
22
font-family: "Frutiger", "Lucinda Grande", "Lucinda Sans Unicode", Helvetica, Arial, Verdana, sans-serif;
33
padding: 15px;
4-
background-color: #009374;
4+
background-color: white;
55
}
66

77
#app_title {

app/logic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from layout import layout_overall
1919
from plotting import *
2020

21-
qml_app = dash.Dash(__name__, url_base_pathname='/qml-playground/')
21+
qml_app = dash.Dash(__name__, url_base_pathname='/qml-playground/', title="QML Playground")
2222
# Assign layout
2323
qml_app.layout = layout_overall
2424

0 commit comments

Comments
 (0)