File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
frontend/src/app/components/code-editor Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ import * as Y from "yjs";
17
17
import Tabs from "../tab/Tabs" ;
18
18
import { fetchProfileUrl } from "@/app/api" ;
19
19
20
+ import { BsArrowsExpand } from "react-icons/bs" ;
21
+
20
22
const CodeMirror = dynamic ( ( ) => import ( "@uiw/react-codemirror" ) , {
21
23
ssr : false ,
22
24
loading : ( ) => (
@@ -208,9 +210,11 @@ const CodeMirrorEditor = ({
208
210
} }
209
211
/>
210
212
< div
211
- className = "divider mx-auto w-[90svw] cursor-ns-resize lg:w-full"
213
+ className = "divider mx-auto w-[90svw] cursor-ns-resize hover:bg-accent lg:w-full"
212
214
onMouseDown = { handleMouseDown }
213
- />
215
+ >
216
+ < BsArrowsExpand className = "text-state-100 text-4xl" />
217
+ </ div >
214
218
< Tabs
215
219
height = { Math . min ( window . innerHeight * 0.7 - editorHeight , maxHeight ) }
216
220
/>
You can’t perform that action at this time.
0 commit comments