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
+22
View File
@@ -0,0 +1,22 @@
import dash_mantine_components as dmc
from .labels import labels_element
next_button = dmc.Button(
"next".title(),
id="next-button",
fullWidth=True,
color="lime",
radius="sm",
size="md",
style={
"height": "50px"
}
)
inputs_element = dmc.SimpleGrid(
children=[
labels_element,
next_button
]
)