Change card list styles & background height

This commit is contained in:
nitegeist
2023-01-16 20:23:07 -05:00
committed by Alec LaLonde
parent ef9498e87d
commit 82660a4c92
2 changed files with 15 additions and 4 deletions

View File

@@ -89,7 +89,9 @@ const OnboardingGuidance: React.FC = () => {
<Box pt={4}>
{guidanceDetails[Role.CuriousOcto].details.map(
(item: string, index: number) => (
<MarkdownViewer key={index}>{item}</MarkdownViewer>
<Box key={index} sx={{ ul: { m: 0, fontWeight: 300 } }}>
<MarkdownViewer>{item}</MarkdownViewer>
</Box>
),
)}
</Box>
@@ -144,7 +146,9 @@ const OnboardingGuidance: React.FC = () => {
<Box pt={4}>
{guidanceDetails[Role.EngagedOcto].details.map(
(item: string, index: number) => (
<MarkdownViewer key={index}>{item}</MarkdownViewer>
<Box key={index} sx={{ ul: { m: 0, fontWeight: 300 } }}>
<MarkdownViewer>{item}</MarkdownViewer>
</Box>
),
)}
</Box>
@@ -179,7 +183,14 @@ const OnboardingGuidance: React.FC = () => {
<Box pt={4}>
{guidanceDetails[Role.SpaceOcto].details.map(
(item: string, index: number) => (
<MarkdownViewer key={index}>{item}</MarkdownViewer>
<Box
key={index}
sx={{
ul: { m: 0, fontWeight: 300, a: { fontWeight: 600 } },
}}
>
<MarkdownViewer>{item}</MarkdownViewer>
</Box>
),
)}
</Box>

View File

@@ -27,7 +27,7 @@ const OnboardingGuide: React.FC = () => {
<LandingHeader />
<PageContainer
p={0}
h="screen"
h="100vh"
w="full"
bg={`url('${BackgroundImage.src}') no-repeat`}
bgSize="cover"