diff --git a/app/javascript/flavours/glitch/features/getting_started/index.js b/app/javascript/flavours/glitch/features/getting_started/index.js index 5ee6ad0f8cebb1764a9f84ba1de5f369fa384629..81991da597400fa809d1f680de2cf22f279030bf 100644 --- a/app/javascript/flavours/glitch/features/getting_started/index.js +++ b/app/javascript/flavours/glitch/features/getting_started/index.js @@ -174,12 +174,12 @@ const NAVIGATION_PANEL_BREAKPOINT = 600 + (285 * 2) + (10 * 2); </div>, ]); - const instance_panel = (customPanelEnabled ? <div className='getting-started getting-started__panel scrollable' dangerouslySetInnerHTML={{__html: customPanel}} /> : null); + const instance_panel = (customPanelEnabled ? <div className='getting-started getting-started__panel' dangerouslySetInnerHTML={{__html: customPanel}} /> : null); return ( <Column name='getting-started' icon='asterisk' heading={intl.formatMessage(messages.heading)} label={intl.formatMessage(messages.menu)} hideHeadingOnMobile> <div className='scrollable optionally-scrollable'> - <div className='getting-started__wrapper scrollable'> + <div className='getting-started__wrapper'> {!multiColumn && <NavigationBar account={myAccount} />} {multiColumn && <ColumnSubheading text={intl.formatMessage(messages.navigation_subheading)} />} {navItems} diff --git a/app/javascript/flavours/glitch/features/ui/components/link_footer.js b/app/javascript/flavours/glitch/features/ui/components/link_footer.js index dcbc97a65d539c705de875b5d77ce6ef904ab24b..2d974bf8f4a075fa5af1dfced95403959ff744eb 100644 --- a/app/javascript/flavours/glitch/features/ui/components/link_footer.js +++ b/app/javascript/flavours/glitch/features/ui/components/link_footer.js @@ -6,7 +6,7 @@ import { invitesEnabled, version, repository, source_url } from 'flavours/glitch import { signOutLink } from 'flavours/glitch/util/backend_links'; const LinkFooter = () => ( - <div className='getting-started__footer scrollable'> + <div className='getting-started__footer'> <p> <FormattedMessage id='getting_started.mastofe_notice'