🚧 Working on flex layout
This commit is contained in:
parent
0f65711d0e
commit
625d16c0f2
10 changed files with 329 additions and 320 deletions
|
|
@ -154,10 +154,10 @@ pub async fn summary(request: HttpRequest) -> ResultPage<Markup, ErrorPage> {
|
|||
.with_title(L10n::n("Admin"))
|
||||
.with_component_in("top-menu", side_menu)
|
||||
.with_component(
|
||||
Container::new()
|
||||
.add_item(Flex::with(Html::with(html! { p { "Columna 1"} })))
|
||||
.add_item(Flex::with(top_menu))
|
||||
.add_item(Flex::with(Html::with(html! { p { "Columna 3"} }))),
|
||||
flex::Container::new()
|
||||
.add_item(flex::Item::with(Html::with(html! { p { "Columna 1"} })))
|
||||
.add_item(flex::Item::with(top_menu))
|
||||
.add_item(flex::Item::with(Html::with(html! { p { "Columna 3"} }))),
|
||||
)
|
||||
.render()
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue