mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-24 23:48:13 -05:00
Fixed empty scrollbars in portal and branding/install theme/customise email modals
This commit is contained in:
parent
b6bc5e66eb
commit
2b83749473
4 changed files with 6 additions and 6 deletions
|
@ -1,5 +1,5 @@
|
||||||
<div class="gh-launch-wizard-settings-container">
|
<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>
|
<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 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>
|
<p>You can further customise your site in Settings.</p>
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
z-index: 1000;
|
z-index: 1000;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
background: var(--white);
|
background: var(--white);
|
||||||
overflow: auto;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.gh-launch-wizard-step-indicator {
|
.gh-launch-wizard-step-indicator {
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
.fullscreen-modal-portal-settings .modal-content {
|
.fullscreen-modal-portal-settings .modal-content {
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: scroll;
|
overflow: auto;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -937,7 +937,7 @@
|
||||||
/*Errors */
|
/*Errors */
|
||||||
.theme-validation-container {
|
.theme-validation-container {
|
||||||
max-height: calc(100vh - 12vw - 110px);
|
max-height: calc(100vh - 12vw - 110px);
|
||||||
overflow-y: scroll;
|
overflow-y: auto;
|
||||||
margin: -32px -32px 0;
|
margin: -32px -32px 0;
|
||||||
padding: 32px 32px 0;
|
padding: 32px 32px 0;
|
||||||
}
|
}
|
||||||
|
@ -1154,7 +1154,7 @@ p.theme-validation-details {
|
||||||
|
|
||||||
.fullscreen-modal-branding-modal .modal-content {
|
.fullscreen-modal-branding-modal .modal-content {
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: scroll;
|
overflow: auto;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
@ -1206,7 +1206,7 @@ p.theme-validation-details {
|
||||||
max-width: 400px;
|
max-width: 400px;
|
||||||
margin: 20px 0 -20px;
|
margin: 20px 0 -20px;
|
||||||
padding: 24px 24px 24px 0;
|
padding: 24px 24px 24px 0;
|
||||||
overflow: scroll;
|
overflow-y: auto;
|
||||||
height: calc(100vh - 136px);
|
height: calc(100vh - 136px);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue