added layout elements

This commit is contained in:
Brian Bjarke Jensen
2024-02-23 22:59:44 +01:00
parent 6c3e772517
commit e5344e6519
9 changed files with 229 additions and 147 deletions
+18 -12
View File
@@ -1,15 +1,21 @@
import dash_mantine_components as dmc
from dash import html
def generate_header():
header = dmc.Header(
height=80,
children=[
dmc.Container(
children=[
html.H2(children="Visual Critical Discourse Analysis Tool", style={"margin-left": "20px", "padding-top": "-5px"}),
], size="xl", px="xl",
),
]
)
return header
header_element = dmc.Header(
height=80,
children=[
dmc.Container(
children=[
html.H2(
children="Visual Critical Discourse Analysis Tool",
style={
"margin-left": "20px",
"padding-top": "-5px"
},
),
],
size="xl", px="xl",
),
]
)