0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Hide scrollbars in popup

This commit is contained in:
Peter Zimon 2020-09-18 10:41:16 +02:00
parent b845272d09
commit 0a030b59cd
2 changed files with 12 additions and 1 deletions

View file

@ -13,7 +13,7 @@ const DEV_MODE_DATA = {
showPopup: true,
site: Fixtures.site,
member: Fixtures.member.paid,
page: 'accountHome'
page: 'signup'
};
export default class App extends React.Component {
constructor(props) {

View file

@ -367,6 +367,17 @@ const GlobalStyles = `
padding-bottom: 0;
max-height: calc(100vh - 12vw - 72px);
}
/* Hide scrollbar for Chrome, Safari and Opera */
.gh-portal-content::-webkit-scrollbar {
display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.gh-portal-content {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
.gh-portal-popup-container footer {
padding: 0 32px 32px;