This is an automated email from the ASF dual-hosted git repository. yjc pushed a commit to branch home-screen-mvp in repository https://gitbox.apache.org/repos/asf/incubator-superset.git
commit 92541f988df9344e074f4132ce4851772fb23d0f Author: Phillip Kelley-Dotson <[email protected]> AuthorDate: Wed Oct 21 15:57:00 2020 -0700 fix css issues from rebase --- superset-frontend/src/views/CRUD/welcome/Welcome.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/superset-frontend/src/views/CRUD/welcome/Welcome.tsx b/superset-frontend/src/views/CRUD/welcome/Welcome.tsx index 9e95167..4719468 100644 --- a/superset-frontend/src/views/CRUD/welcome/Welcome.tsx +++ b/superset-frontend/src/views/CRUD/welcome/Welcome.tsx @@ -20,7 +20,7 @@ import React from 'react'; import { styled, t } from '@superset-ui/core'; import { Collapse } from 'src/common/components'; import { User } from 'src/types/bootstrapTypes'; - +import { mq } from '../utils'; import ActivityTable from './ActivityTable'; import ChartTable from './ChartTable'; import SavedQueries from './SavedQueries'; @@ -43,7 +43,10 @@ const WelcomeContainer = styled.div` border: 1px solid ${({ theme }) => theme.colors.grayscale.light2}; margin: 0px 26px; position: relative; - top: -13px; + ${[mq[1]]} { + margin-top: 5px; + margin: 0px 2px; + } } .nav.navbar-nav { & > li:nth-child(1),
