Fixed empty scrollbars in portal and branding/install theme/customise email modals

This commit is contained in:
Sanne de Vries 2021-03-01 14:42:41 +01:00
parent b6bc5e66eb
commit 2b83749473
4 changed files with 6 additions and 6 deletions

View File

@ -1,5 +1,5 @@
<div class="gh-launch-wizard-settings-container">
<div class="overflow-scroll flex-grow-1">
<div class="overflow-auto flex-grow-1">
<h4>All looks good?</h4>
<p>You are all set up to start creating content, grow an audience and make your first sale!</p>
<p>You can further customise your site in Settings.</p>

View File

@ -7,7 +7,7 @@
z-index: 1000;
height: 100vh;
background: var(--white);
overflow: auto;
overflow: hidden;
}
.gh-launch-wizard-step-indicator {

View File

@ -5,7 +5,7 @@
.fullscreen-modal-portal-settings .modal-content {
position: relative;
overflow: scroll;
overflow: auto;
height: 100%;
padding: 0;
}

View File

@ -937,7 +937,7 @@
/*Errors */
.theme-validation-container {
max-height: calc(100vh - 12vw - 110px);
overflow-y: scroll;
overflow-y: auto;
margin: -32px -32px 0;
padding: 32px 32px 0;
}
@ -1154,7 +1154,7 @@ p.theme-validation-details {
.fullscreen-modal-branding-modal .modal-content {
position: relative;
overflow: scroll;
overflow: auto;
height: 100%;
padding: 0;
}
@ -1206,7 +1206,7 @@ p.theme-validation-details {
max-width: 400px;
margin: 20px 0 -20px;
padding: 24px 24px 24px 0;
overflow: scroll;
overflow-y: auto;
height: calc(100vh - 136px);
}