Skip to content

Commit

Permalink
fix: nested vuetify apps should not have 100vh (#570)
Browse files Browse the repository at this point in the history
If a vue tree gets interrupted (by ipyreact or classic ipywidgets)
we start a new (vuetify) app. This causes that root DOM element to
take up 100vh, which is only needed for the top-level app.
  • Loading branch information
maartenbreddels authored Mar 25, 2024
1 parent f3b77b5 commit e20dac4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions solara/server/assets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ code::before {
box-shadow: unset !important;
}

.v-application--wrap .v-application--wrap {
/* disable min-height: 100vh set by vuetify for nested apps */
min-height: unset;
}


div.highlight pre code {
/* box-shadow: 0 2px 1px -1px rgb(0 0 0 / 20%), 0 1px 1px 0 rgb(0 0 0 / 14%), 0 1px 3px 0 rgb(0 0 0 / 12%); */
/* border: 1px #333 solid; */
Expand Down

0 comments on commit e20dac4

Please sign in to comment.