mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 22:43:30 +03:00
Fixed empty scrollbars in portal and branding/install theme/customise email modals
This commit is contained in:
parent
b6bc5e66eb
commit
2b83749473
@ -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>
|
||||
|
@ -7,7 +7,7 @@
|
||||
z-index: 1000;
|
||||
height: 100vh;
|
||||
background: var(--white);
|
||||
overflow: auto;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.gh-launch-wizard-step-indicator {
|
||||
|
@ -5,7 +5,7 @@
|
||||
|
||||
.fullscreen-modal-portal-settings .modal-content {
|
||||
position: relative;
|
||||
overflow: scroll;
|
||||
overflow: auto;
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
}
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user