Skip to content

Commit

Permalink
🐛(site) Fix step reinforcements and content overflow (#776)
Browse files Browse the repository at this point in the history
* Fix step reinforcements and content overflow

* Swap to clip

---------

Co-authored-by: Sam Richard <samrichard@google.com>
  • Loading branch information
Snugug and Sam Richard committed Sep 3, 2024
1 parent 71b9a47 commit 7ced109
Showing 1 changed file with 23 additions and 10 deletions.
33 changes: 23 additions & 10 deletions site/src/layouts/views/Tutorial.astro
Original file line number Diff line number Diff line change
Expand Up @@ -203,16 +203,28 @@ if (intro) {
client:only="svelte"
/>
<ul class="reinforcements">
{tutorial.outro.next.steps.map((g, i) => (
<Reinforcement
tutorial={slugify(tutorial.title)}
task={slugify(tutorial.tasks[task].title)}
step={i}
client:load
>
<Text body={g} inline={true} wrapped={false} />
</Reinforcement>
))}
{tutorial?.tasks[task]?.reinforcement &&
tutorial?.tasks[task]?.reinforcement.map((g, i) => (
<Reinforcement
tutorial={slugify(tutorial.title)}
task={slugify(tutorial.tasks[task].title)}
step={i}
client:load
>
<Text body={g} inline={true} wrapped={false} />
</Reinforcement>
))}
{outro &&
tutorial.outro.next.steps.map((g, i) => (
<Reinforcement
tutorial={slugify(tutorial.title)}
task={slugify(tutorial.tasks[task].title)}
step={i}
client:load
>
<Text body={g} inline={true} wrapped={false} />
</Reinforcement>
))}
</ul>
</section>
</>
Expand Down Expand Up @@ -397,6 +409,7 @@ if (intro) {
display: flex;
flex-direction: column;
gap: 2rem;
overflow-x: clip;
}

.pagination {
Expand Down

0 comments on commit 7ced109

Please sign in to comment.