vaadin / full-stack-starter

Public repository for Full Stack Starter issues
https://vaadin.com/start
1 stars 0 forks source link

Dialog height is broken in 12.0.0beta1 + 2 #22

Closed martinisraelsen closed 5 years ago

martinisraelsen commented 5 years ago

Starting from Vaadin 12.0.0alpha4 the dialog is not at full height in the Bakery app.

vaadin 11 vaadin 12 0 0beta2

alvarezguille commented 5 years ago

Thanks @martinisraelsen for reporting this, I moved the issue to the starter project. We'll take a look and post a solution here

alvarezguille commented 5 years ago

The fix for this styling issue that is compatible with Vaadin 11+ is to do the following styles changes in shared-styles.html Change flex: 1; to height: 100vh; for [part="overlay"]

In a fresh downloaded full stack starter with Vaadin 11 the lines changes are

martinisraelsen commented 5 years ago

@alvarezguille yep that solved it!