-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
39 lines (32 loc) · 799 Bytes
/
main.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
body, html {
height: 100%;
margin: 0;
font-family: Arial, sans-serif;
}
.split-screen {
display: flex;
height: 100vh; /* Use viewport height to ensure full height */
}
.left-pane, .right-pane {
width: 50%;
height: 100vh; /* Use viewport height to ensure full height */
/* overflow: auto;*/
overflow: hidden;
}
.left-pane {
border-right: 1px solid #ccc;
}
.right-pane {
display: flex; /* Use flexbox layout */
flex-direction: column; /* Stack children vertically */
}
#terminal {
flex-grow: 1; /* Allow the terminal to grow to fill the space */
width: 100%; /* Full width of its parent */
}
iframe {
width: 100%;
height: 100%;
border: none; /* Optional: remove the border for a cleaner look */
}
/* Add additional styling as needed */