mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-19 18:04:48 +00:00
fix: remove disconnected indicator, add button spacing and min-width
This commit is contained in:
parent
2e47f9cf8d
commit
0b76ec9f3e
2 changed files with 7 additions and 8 deletions
|
|
@ -399,7 +399,7 @@
|
||||||
.sidebar-header-actions {
|
.sidebar-header-actions {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 4px;
|
gap: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar-icon-btn {
|
.sidebar-icon-btn {
|
||||||
|
|
@ -603,6 +603,11 @@
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.empty-state .button {
|
||||||
|
margin-top: 16px;
|
||||||
|
min-width: 180px;
|
||||||
|
}
|
||||||
|
|
||||||
.message {
|
.message {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 10px;
|
gap: 10px;
|
||||||
|
|
|
||||||
|
|
@ -713,12 +713,6 @@ export default function App() {
|
||||||
<div className="logo">SA</div>
|
<div className="logo">SA</div>
|
||||||
<span className="header-title">Sandbox Agent</span>
|
<span className="header-title">Sandbox Agent</span>
|
||||||
</div>
|
</div>
|
||||||
<div className="header-right">
|
|
||||||
<div className="status-indicator disconnected">
|
|
||||||
<span className="status-dot" />
|
|
||||||
Disconnected
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<main className="landing">
|
<main className="landing">
|
||||||
|
|
@ -872,7 +866,7 @@ export default function App() {
|
||||||
<p className="empty-state-text">
|
<p className="empty-state-text">
|
||||||
Create a new session to start chatting with an agent.
|
Create a new session to start chatting with an agent.
|
||||||
</p>
|
</p>
|
||||||
<button className="button primary" onClick={createNewSession} style={{ marginTop: 16 }}>
|
<button className="button primary" onClick={createNewSession}>
|
||||||
<Plus className="button-icon" />
|
<Plus className="button-icon" />
|
||||||
Create Session
|
Create Session
|
||||||
</button>
|
</button>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue