Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects

Resolve "change for froggit colors and fonts"

Merged Hugues requested to merge 21-change-for-froggit-colors-and-fonts into master
Files
44
/* eslint-disable linebreak-style */
/* eslint react/prop-types: 0 */
import React from "react";
import clsx from "clsx";
import styles from "./HomepageFeatures.module.css";
@@ -41,16 +43,18 @@ const FeatureList = [
},
];
// eslint-disable-next-line
function Feature({Svg, title, description}) {
return (
<div className={clsx("hero hero--primary text--center padding-horiz--md", styles.featureContainer)}>
<div className={styles.featureSvg}>
<Svg className={styles.svg} alt={title} />
</div>
<div className={styles.featureText}>
<h3>{title}</h3>
<p>{description}</p>
<div className={clsx("hero container text--center padding-horiz--md")}>
<div className="row">
<div className={"col col--5"}>
<Svg className={styles.svg} alt={title} />
</div>
<div className={"col col--5"}>
<h3>{title}</h3>
<p>{description}</p>
</div>
</div>
</div>
);
Loading