ul correction in Motivation
This commit is contained in:
parent
a954ee9a62
commit
90f3af27ee
@ -25,10 +25,11 @@ const Motivation = () => {
|
|||||||
{
|
{
|
||||||
content.map((paragraph, index) => {
|
content.map((paragraph, index) => {
|
||||||
return (
|
return (
|
||||||
<FlexRow key={`motivation-${index}`} as='li' gap='12px' alignmentY='flex-start'>
|
<FlexRow key={`motivation-${index}`} as='li' gap='12px' alignmentX='flex-start'
|
||||||
|
alignmentY='flex-start'>
|
||||||
<Svg src={cubeIcon} width='14px' height='14px' margin='4px 0 0 0'
|
<Svg src={cubeIcon} width='14px' height='14px' margin='4px 0 0 0'
|
||||||
backgroundColor={theme.colors.green}/>
|
backgroundColor={theme.colors.green}/>
|
||||||
<Body as='p'>
|
<Body as='p' width='90%'>
|
||||||
{paragraph}
|
{paragraph}
|
||||||
</Body>
|
</Body>
|
||||||
</FlexRow>
|
</FlexRow>
|
||||||
|
@ -1,10 +1,16 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
|
import {FlexColumn} from "../utils/containers";
|
||||||
|
import {useParams} from "react-router-dom";
|
||||||
|
import {H1} from "../utils/fonts";
|
||||||
|
|
||||||
const Challenge = () => {
|
const Challenge = () => {
|
||||||
|
const challengeId = useParams().challengeId;
|
||||||
return (
|
return (
|
||||||
<p>
|
<FlexColumn minHeight='100vh'>
|
||||||
siema
|
<H1>
|
||||||
</p>
|
{challengeId}
|
||||||
|
</H1>
|
||||||
|
</FlexColumn>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user