diff --git a/frontend/src/App.css b/frontend/src/App.css
index 9b87bf3708..5f0b7d926d 100644
--- a/frontend/src/App.css
+++ b/frontend/src/App.css
@@ -13,31 +13,56 @@
.left-pane {
flex: 1;
background-color: #252526;
+ margin: 1rem;
+ overflow: hidden;
+ border-radius: 1rem;
}
.right-pane {
flex: 1;
display: flex;
flex-direction: column;
+ border-radius: 1rem;
+ margin: 1rem;
+ background-color: #ffffff24;
+ overflow: hidden;
+}
+
+.workspace-content {
+ flex: 1;
+ display: flex;
+ flex-direction: column;
+}
+.workspace-heading {
+ padding: 0 1rem;
+ display: flex;
+ justify-content: space-between;
+ font-size: 20px;
+ font-weight: bolder;
}
.tab-container {
display: flex;
background-color: #333333;
}
-
.tab {
padding: 10px 20px;
cursor: pointer;
- color: #fff;
+ color: #ffffffb3;
+ font-weight: light;
+ position: relative;
}
.tab.active {
- background-color: #1e1e1e;
- font-weight: bold;
+ color: #fff;
+ font-weight: bolder;
}
.tab-content {
flex: 1;
- background-color: #1e1e1e;
-}
\ No newline at end of file
+ height: 95%;
+ border-radius: 0 0 0.5rem 0.5rem;
+}
+.xterm-screen {
+ padding: 10px 0 0 10px;
+}
diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx
index 7e1a304d72..919c3b8f99 100644
--- a/frontend/src/App.tsx
+++ b/frontend/src/App.tsx
@@ -53,19 +53,24 @@ function App(): JSX.Element {
-
- {TAB_OPTIONS.map((tab) => (
-
setActiveTab(tab)}
- />
- ))}
+
+
+
OpenDevin's Workspace
+
+
+ {TAB_OPTIONS.map((tab) => (
+ setActiveTab(tab)}
+ />
+ ))}
+
+ {/* Keep terminal permanently open - see component for more details */}
+
+
{tabData[activeTab].component}
- {/* Keep terminal permanently open - see component for more details */}
-
- {tabData[activeTab].component}
);
diff --git a/frontend/src/components/Browser.css b/frontend/src/components/Browser.css
index 49c3a4afae..b73bea33b4 100644
--- a/frontend/src/components/Browser.css
+++ b/frontend/src/components/Browser.css
@@ -5,9 +5,75 @@
border-radius: 2rem;
color: #252526;
}
+.browser {
+ height: 90%;
+ width: 100%;
+ border-radius: 2rem;
+ padding: 1rem;
+}
+.url {
+ margin: 0.5rem;
+ padding: 0.5rem 1rem;
+ width: 80%;
+ background-color: white;
+ border-radius: 2rem;
+ color: #252526;
+}
+
+.mac-url-bar {
+ display: flex;
+ align-items: center;
+ background-color: #f0f0f0;
+ height: 40px;
+ padding: 0 10px;
+ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
+}
+
+.mac-url-bar .left-icons {
+ display: flex;
+}
+
+.mac-url-bar .icon {
+ width: 12px;
+ height: 12px;
+ border-radius: 50%;
+ margin-right: 5px;
+}
+
+.mac-url-bar .icon-red {
+ background-color: #fc6255;
+}
+
+.mac-url-bar .icon-yellow {
+ background-color: #ffbe3d;
+}
+
+.mac-url-bar .icon-green {
+ background-color: #25d366;
+}
+
+.mac-url-bar .url-input {
+ display: flex;
+ align-items: center;
+ background-color: white;
+ border: 1px solid #e0e0e0;
+ border-radius: 5px;
+ padding: 0 2px;
+ flex-grow: 1;
+ margin: 0 10px;
+}
+
+.mac-url-bar .url-input input {
+ border: none;
+ outline: none;
+ background: transparent;
+ flex-grow: 1;
+ padding: 5px;
+}
.screenshot {
width: 100%;
- max-height: calc(100vh - 100px); /* 100px is the height of the header */
+ height: 96%;
+ max-height: calc(90vh - 100px); /* 100px is the height of the header */
object-fit: cover;
}
diff --git a/frontend/src/components/Browser.tsx b/frontend/src/components/Browser.tsx
index 4669d34a89..8bad560a18 100644
--- a/frontend/src/components/Browser.tsx
+++ b/frontend/src/components/Browser.tsx
@@ -8,7 +8,16 @@ type UrlBarProps = {
};
function UrlBar({ url }: UrlBarProps): JSX.Element {
- return {url}
;
+ return (
+
+ );
}
type ScreenshotProps = {
diff --git a/frontend/src/components/ChatInterface.css b/frontend/src/components/ChatInterface.css
index 04677367c9..d353f3fd2f 100644
--- a/frontend/src/components/ChatInterface.css
+++ b/frontend/src/components/ChatInterface.css
@@ -23,25 +23,25 @@
display: flex;
margin-bottom: 10px;
}
-.message{
+.message {
display: flex;
}
-.user-message{
+.user-message {
display: flex;
flex-direction: row-reverse;
- margin:10px 10px 0 auto
+ margin: 10px 10px 0 auto;
}
.user-message .message-content {
- background-color: #007acc ;
+ background-color: #007acc;
}
.avatar {
width: 40px;
height: 40px;
border-radius: 50%;
- margin:0 10px;
+ margin: 0 10px;
}
.message-content {
@@ -52,15 +52,28 @@
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
-
.input-container {
+ width: 98%;
display: flex;
align-items: center;
- margin-top: auto;
- margin: 0.5rem;
+ background-color: #3e3e3e;
+ padding: 10px;
+ border-radius: 0 0rem 1rem 1rem;
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
+ color: #fff;
}
-.input-container input {
+.button-text {
+ font-size: 16px;
+}
+
+.input-box {
+ border-radius: 1rem;
+ background-color: #333333;
+ width: 100%;
+ display: flex;
+}
+.input-box input {
flex: 1;
padding: 10px;
border: none;
@@ -68,24 +81,17 @@
margin: 0 10px;
background-color: #3c3c3c;
color: #fff;
- font-size: 16px;
+ background-color: transparent;
+ outline: transparent;
}
-
-.input-container button {
+.input-box button {
+ background-color: transparent;
padding: 10px 20px;
- background-color: #007acc;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
-
-.button-text {
- font-size: 16px;
+.input-box button:hover {
+ background-color: transparent;
}
-
-
-.input-container svg {
- height: 16px;
-}
-
diff --git a/frontend/src/components/ChatInterface.tsx b/frontend/src/components/ChatInterface.tsx
index eb2c709fe7..0a3407d272 100644
--- a/frontend/src/components/ChatInterface.tsx
+++ b/frontend/src/components/ChatInterface.tsx
@@ -59,21 +59,26 @@ function ChatInterface(): JSX.Element {
);
diff --git a/frontend/src/components/CodeEditor.tsx b/frontend/src/components/CodeEditor.tsx
index cf4d1d7c96..b5a157e7d9 100644
--- a/frontend/src/components/CodeEditor.tsx
+++ b/frontend/src/components/CodeEditor.tsx
@@ -7,13 +7,22 @@ function CodeEditor(): JSX.Element {
const code = useSelector((state: RootState) => state.code.code);
return (
-
+
+
+
);
}
diff --git a/frontend/src/components/Planner.tsx b/frontend/src/components/Planner.tsx
index 1cb357912c..aec2a18011 100644
--- a/frontend/src/components/Planner.tsx
+++ b/frontend/src/components/Planner.tsx
@@ -2,7 +2,16 @@ import React from "react";
function Planner(): JSX.Element {
return (
-
+
Current Focus: Set up the development environment according to the
project's instructions.
diff --git a/frontend/src/components/Terminal.tsx b/frontend/src/components/Terminal.tsx
index 09c933662f..a28fa66cbb 100644
--- a/frontend/src/components/Terminal.tsx
+++ b/frontend/src/components/Terminal.tsx
@@ -92,6 +92,7 @@ function Terminal({ hidden }: TerminalProps): JSX.Element {
width: "100%",
height: "100%",
display: hidden ? "none" : "block",
+ padding: "1rem",
}}
/>
);