- 🇩🇪Germany Anybody Porta Westfalica
@thomas.frobieter guess we should move this over to https://www.drupal.org/project/drowl_layouts_bs → for future implementation?
Allow to set the vertical alignment also on the one-column layout.
This is especially needed if the container has a min-height.
The challenge here is: We cant simply do something like:
.drowl-layout-container.align-middle{
height:100%;
display:flex;
flex-direction:column;
justify-content:center;
}
... because height does not work according to the min-height of the container.
Maybe we're able to get the alignment value on the .paragraph container itself (just for the one column layout!), so we can do:
.paragraph.align-middle{
display:flex;
flex-direction:column;
justify-content:center;
}
Active
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
@thomas.frobieter guess we should move this over to https://www.drupal.org/project/drowl_layouts_bs → for future implementation?