Skip to content

Commit

Permalink
Fix servoy extra table in flex layout
Browse files Browse the repository at this point in the history
  • Loading branch information
paronne committed May 10, 2018
1 parent d4ddfe4 commit 18d4063
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions lib/12grid.css
Expand Up @@ -171,9 +171,15 @@

.flex-footer {}

/* This style forces a table component contained in a flex-content section to 100% height.
/* would be better to move this into the svyThemeRoller ?
This style forces a table component contained in a flex-content section to 100% height.
It facilitates the usage of the containers in combination with table components however won't allow to
set responsiveHeight to 100% in table component it's self is preferable*/
set responsiveHeight to 100% in table component it's self is preferable */
.flexlayout > .flex-content > data-servoyextra-table {
height: 100%;
}

.flexlayout > .flex-content > * > .tablewrapper {
height: 100% !important;
}

0 comments on commit 18d4063

Please sign in to comment.