diff --git a/ghost/portal/src/App.js b/ghost/portal/src/App.js index 20c778de85..e356da0a37 100644 --- a/ghost/portal/src/App.js +++ b/ghost/portal/src/App.js @@ -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) { diff --git a/ghost/portal/src/components/Frame.styles.js b/ghost/portal/src/components/Frame.styles.js index 09644b8262..3777036d07 100644 --- a/ghost/portal/src/components/Frame.styles.js +++ b/ghost/portal/src/components/Frame.styles.js @@ -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;