From 9226861c2663fc250013eb19681822eb695f8576 Mon Sep 17 00:00:00 2001 From: KokaKiwi <kokakiwi@kokakiwi.net> Date: Wed, 3 Jul 2019 10:37:39 +0200 Subject: [PATCH] Fix "Getting Started" column --- .../flavours/glitch/features/getting_started/index.js | 4 ++-- .../flavours/glitch/features/ui/components/link_footer.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/javascript/flavours/glitch/features/getting_started/index.js b/app/javascript/flavours/glitch/features/getting_started/index.js index 5ee6ad0f8..81991da59 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 dcbc97a65..2d974bf8f 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' -- GitLab