More fixes :)
This commit is contained in:
parent
89d3e02931
commit
e660a4d4fe
4 changed files with 29 additions and 8 deletions
|
@ -16,7 +16,7 @@ const FeatureList = [
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'Find it fast',
|
title: 'Speedy search',
|
||||||
description: (
|
description: (
|
||||||
<>
|
<>
|
||||||
<ul>
|
<ul>
|
||||||
|
@ -24,12 +24,13 @@ const FeatureList = [
|
||||||
<li>Configurable search method - fuzzy, prefix, etc</li>
|
<li>Configurable search method - fuzzy, prefix, etc</li>
|
||||||
<li>Easily search and filter by session, directory, or machine</li>
|
<li>Easily search and filter by session, directory, or machine</li>
|
||||||
<li>Powerful command line search for integration with other tools</li>
|
<li>Powerful command line search for integration with other tools</li>
|
||||||
|
<li>Written in Rust, so it's fast <em>and</em> safe 🦀</li>
|
||||||
</ul>
|
</ul>
|
||||||
</>
|
</>
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'All the data',
|
title: 'Extra context',
|
||||||
description: (
|
description: (
|
||||||
<>
|
<>
|
||||||
<ul>
|
<ul>
|
||||||
|
@ -44,7 +45,7 @@ const FeatureList = [
|
||||||
|
|
||||||
function Feature({ Svg, title, description }) {
|
function Feature({ Svg, title, description }) {
|
||||||
return (
|
return (
|
||||||
<div className={clsx('col col--4')}>
|
<div className={clsx('col col--4', styles.whatisfeatureblock)}>
|
||||||
<div className={"padding-horiz--md", styles.whatisfeature}>
|
<div className={"padding-horiz--md", styles.whatisfeature}>
|
||||||
<h3>{title}</h3>
|
<h3>{title}</h3>
|
||||||
<p>{description}</p>
|
<p>{description}</p>
|
||||||
|
|
|
@ -15,3 +15,13 @@
|
||||||
padding: 2rem;
|
padding: 2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@media screen and (max-width: 996px) {
|
||||||
|
.whatisfeatureblock {
|
||||||
|
margin-top: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.features {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -33,3 +33,4 @@
|
||||||
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
|
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,20 @@
|
||||||
.heroBanner {
|
.heroBanner {
|
||||||
padding: 2rem;
|
padding: 2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.whatis {
|
||||||
|
padding-top: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.whatisfeatureblock {
|
||||||
|
margin-top: 2rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: 996px) {
|
||||||
|
.whatis {
|
||||||
|
padding: 4rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.buttons {
|
.buttons {
|
||||||
|
@ -36,11 +50,6 @@
|
||||||
-moz-text-fill-color: transparent;
|
-moz-text-fill-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
.whatis {
|
|
||||||
padding: 4rem;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.whatis h1 {
|
.whatis h1 {
|
||||||
font-size: 2em;
|
font-size: 2em;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue