Skip to content

Commit ecb64fc

Browse files
authored
Merge pull request #131 from dockersamples/fix-ui-issues
Fix UI issues
2 parents 61cd1c8 + 5677978 commit ecb64fc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/interface/client/src/components/WorkshopPanel/WorkshopNav.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export function WorkshopNav() {
1818
{(activeSection && (
1919
<>
2020
{sections.findIndex((s) => s.id === activeSection.id) + 1}.{" "}
21-
{activeSection.title} and a little more
21+
{activeSection.title}
2222
</>
2323
)) ||
2424
"Sections"}

components/interface/client/src/components/WorkshopPanel/WorkshopPanel.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export function WorkshopPanel() {
2828

2929
return (
3030
<div className="d-flex flex-column h-100">
31-
<div className="overflow-auto" ref={bodyRef}>
31+
<div className="overflow-auto flex-grow-1" ref={bodyRef}>
3232
<div className="workshop-body p-5 pt-3 pb-3">
3333
<MarkdownRenderer>{activeSection.content}</MarkdownRenderer>
3434
</div>

0 commit comments

Comments
 (0)