func
diff --git a/webapp/src/components/Stack/Stack.css b/webapp/src/components/Stack/Stack.css
index 8a4f3dc..55cc703 100644
--- a/webapp/src/components/Stack/Stack.css
+++ b/webapp/src/components/Stack/Stack.css
@@ -1,6 +1,6 @@
.stack-parent {
display: flex;
- height: 60vh;
+ height: 90vh;
width: 210px;
padding: 10px;
flex-direction: column;
diff --git a/webapp/src/components/StackBottom/StackBottom.css b/webapp/src/components/StackBottom/StackBottom.css
new file mode 100644
index 0000000..729579f
--- /dev/null
+++ b/webapp/src/components/StackBottom/StackBottom.css
@@ -0,0 +1,25 @@
+.stackbottom-container {
+ display: flex;
+ width: 190px;
+ height: 159px;
+ padding: 15px 20px;
+ flex-direction: column;
+ align-items: flex-start;
+ gap: 10px;
+ border: 1px solid var(--Gray-2, #4f4f4f);
+ background: #1e1e1e;
+}
+.stackbottom-maincomponent {
+ overflow-x: scroll;
+ width: 190px;
+ height: 139px;
+}
+.stackbottom-heading {
+ display: flex;
+ width: 169px;
+ padding: 6px 12px;
+ justify-content: center;
+ align-items: center;
+ gap: 10px;
+ background: var(--primary-orange, #e88f40);
+}
diff --git a/webapp/src/components/StackBottom/StackBottom.jsx b/webapp/src/components/StackBottom/StackBottom.jsx
new file mode 100644
index 0000000..dfb9209
--- /dev/null
+++ b/webapp/src/components/StackBottom/StackBottom.jsx
@@ -0,0 +1,22 @@
+import React from "react";
+import "./StackBottom.css";
+
+const StackBottom = () => {
+ return (
+
+
+
Registors
+
+
+
func
+
file
+
addr
+
args
+
+
+
+
+ );
+};
+
+export default StackBottom;
diff --git a/webapp/src/components/Terminal/TerminalComp.jsx b/webapp/src/components/Terminal/TerminalComp.jsx
index 275df44..7fa2b1f 100644
--- a/webapp/src/components/Terminal/TerminalComp.jsx
+++ b/webapp/src/components/Terminal/TerminalComp.jsx
@@ -11,7 +11,7 @@ const TerminalComp = () => {
themes={{
"my-custom-theme": {
themeBGColor: "#000",
- themeToolbarColor: "#DBDBDB",
+ themeToolbarColor: "#000",
themeColor: "#FFFEFC",
themePromptColor: "#a917a8",
},
diff --git a/webapp/src/pages/Debug/Debug.css b/webapp/src/pages/Debug/Debug.css
index 726afed..22f7094 100644
--- a/webapp/src/pages/Debug/Debug.css
+++ b/webapp/src/pages/Debug/Debug.css
@@ -27,3 +27,15 @@
align-items: flex-start;
gap: 15px;
}
+.right-part {
+ display: flex;
+
+ flex-direction: column;
+ gap: 10px;
+}
+.left-part {
+ display: flex;
+
+ flex-direction: column;
+ gap: 10px;
+}
diff --git a/webapp/src/pages/Debug/Debug.jsx b/webapp/src/pages/Debug/Debug.jsx
index f7695c8..ebbd649 100644
--- a/webapp/src/pages/Debug/Debug.jsx
+++ b/webapp/src/pages/Debug/Debug.jsx
@@ -8,6 +8,8 @@ import Stack from "../../components/Stack/Stack";
import TerminalComp from "../../components/Terminal/TerminalComp";
import GdbComponents from "../../components/GdbComponents/GdbComponents";
import Breakpoint from "../../components/Breakpoint/Breakpoint";
+import StackBottom from "../../components/StackBottom/StackBottom";
+import FunctionsBottom from "../../components/FunctionsBottom/FunctionsBottom";
const Debug = () => {
return (
@@ -15,7 +17,10 @@ const Debug = () => {
-
+
+
+
+
@@ -26,7 +31,10 @@ const Debug = () => {
-
+
+
+
+