22 lines
493 B
Python
22 lines
493 B
Python
import dash_mantine_components as dmc
|
|
from dash import html
|
|
|
|
|
|
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",
|
|
),
|
|
]
|
|
)
|