-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Force flex layout #57
Comments
The issue is not reproduced. Designer by default sets display block only for the parent element, and that doesn't break app-layout. The described issue happened by manual overriding @jouni Should we anyway set it important? |
@emarc, can you add more detail to this issue? How did you end up in the situation that app-layout was |
The issue was indeed the sum of a number of things: The reason I decided to apply the tl;dr vaadin-app-layout requiring theme-for + no shared-styles in Project Base + lazy programmer + Designer adding display:block + Designer not allowing multiple dom-module = bugging vaadin-app-layout. Quite a sequence of events in my case... |
Luckily such limitation no longer exists, it was fixed in #56
We did this as part of #59 Thanks for the feedback and the detailed explanation, hopefully these small changes will save some time and surprises |
Just realized, that having |
You probably mean "cannot be hidden"? Indeed, EDIT lol I like how I pointed out your typo and then wrote "ben (be)" myself |
Yes, meant to write “can’t”. Fixed now. |
App Layout makes assumes that the host element is always
display: flex
.If a user uses
<vaadin-app-layout>
as the root element of a design in Vaadin Designer, the tool will override the host withdisplay: block
, causing unexpected results.We could prevent this by enforcing
display: flex !important
.The text was updated successfully, but these errors were encountered: