Skip to content

Commit

Permalink
Fix CrawlerLanding css
Browse files Browse the repository at this point in the history
  • Loading branch information
byronhulcher committed Jun 1, 2021
1 parent f56586e commit 0f3730b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
.crawler-landing {
.crawlerLanding {
&__panel {
overflow: hidden;
background-image: url('./assets/bg_crawler_landing.png');
background-size: 45%;
background-repeat: no-repeat;
background-position: right -2rem;

> div {
}

&__wrapper {
max-width: 50rem;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ import './crawler_landing.scss';
import { CRAWLER_TITLE } from '.';

export const CrawlerLanding: React.FC = () => (
<div data-test-subj="CrawlerLanding" className="crawler-landing">
<div data-test-subj="CrawlerLanding" className="crawlerLanding">
<EuiPageHeader pageTitle={CRAWLER_TITLE} />
<EuiSpacer />
<EuiPanel grow paddingSize="l" className="crawler-landing__panel">
<div>
<EuiPanel grow paddingSize="l" className="crawlerLanding__panel">
<div className="crawlerLanding__wrapper">
<EuiTitle size="s">
<h1>
{i18n.translate('xpack.enterpriseSearch.appSearch.engine.crawler.landingPage.title', {
Expand Down

0 comments on commit 0f3730b

Please sign in to comment.