mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-04-24 03:00:09 -04:00
Change card list styles & background height
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user