Skip to content

Commit c75ef40

Browse files
authored
fix: a transition-theme class was missing for the content right border (#139)
1 parent 9bdd3d2 commit c75ef40

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/astro/src/default/components/MainContainer.astro

+4-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,10 @@ const showWorkspacePanel = hasWorkspace(lesson);
3434
<Nav client:load lesson={lesson} navList={navList} />
3535
<TutorialContent lesson={lesson} />
3636
</div>
37-
<div class="h-full sm:border-l border-tk-elements-app-borderColor" slot={showWorkspacePanel ? 'b' : 'hide'}>
37+
<div
38+
class="h-full sm:border-l transition-theme border-tk-elements-app-borderColor"
39+
slot={showWorkspacePanel ? 'b' : 'hide'}
40+
>
3841
<WorkspacePanel lesson={lesson} client:load transition:persist />
3942
</div>
4043
</ResizablePanel>

0 commit comments

Comments
 (0)