added new folder and ran tests

This commit is contained in:
Brian Bjarke Jensen
2024-05-07 20:19:18 +02:00
parent d9d2dbab74
commit bc653a0be4
16 changed files with 700 additions and 19 deletions
+36
View File
@@ -0,0 +1,36 @@
from __future__ import annotations
import dash_mantine_components as dmc
from .alerts import alerts_element
from .body import body_element
from .header import header_element
from .stores import stores_element
app_layout = dmc.MantineProvider(
theme={
'fontFamily': '"Inter", sans-serif',
'components': {
'NavLink': {
'styles': {
'label': {
'color': '#c2c7d0',
},
},
},
},
},
children=[
stores_element,
alerts_element,
dmc.Container(
children=[
header_element,
body_element,
],
fluid=True,
),
],
)