Merge pull request #1489 from robintown/settings-cut-off

Fix dropdowns in settings being cut off
This commit is contained in:
Robin
2023-09-18 18:27:09 -04:00
committed by GitHub
2 changed files with 5 additions and 1 deletions

View File

@@ -195,6 +195,10 @@ body[data-platform="ios"] .drawer {
grid-area: close;
}
.body {
flex-grow: 1;
}
.dialog .body {
padding-inline: var(--cpd-space-10x);
padding-block: var(--cpd-space-10x) var(--cpd-space-12x);

View File

@@ -15,8 +15,8 @@ limitations under the License.
*/
.tabContainer {
min-height: 100%;
display: flex;
flex: 1;
flex-direction: column;
}