Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@
<h1 id="page-title">Home</h1>
<p id="page-subtitle">Quick settings and overview</p>
</div>
<div class="status-indicator" id="connection-status">
<span class="status-dot"></span>
<span class="status-text">Active</span>
</div>
</header>

<!-- Views Container (views injected dynamically) -->
Expand Down
32 changes: 0 additions & 32 deletions src/styles/common.css
Original file line number Diff line number Diff line change
Expand Up @@ -303,38 +303,6 @@ body {
color: var(--text-secondary);
}

.status-indicator {
display: flex;
align-items: center;
gap: 8px;
font-size: 12px;
color: var(--text-secondary);
padding: 8px 16px;
background: var(--bg-tertiary);
border-radius: 20px;
}

.status-dot {
width: 8px;
height: 8px;
background: #10b981;
border-radius: 50%;
animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
0%,
100% {
opacity: 1;
box-shadow: 0 0 8px rgb(16 185 129 / 50%);
}

50% {
opacity: 0.7;
box-shadow: 0 0 4px rgb(16 185 129 / 30%);
}
}

/* Content Views */
#views-container {
flex: 1;
Expand Down