Skip to content
Draft
Changes from 1 commit
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
Prev Previous commit
Cleanup
  • Loading branch information
dlarocque committed Oct 17, 2025
commit 05123a6d6fc8aec1ea3b776d0bb407f2c1f21081
60 changes: 0 additions & 60 deletions ai/ai-react-app/src/views/LiveView.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -77,126 +77,66 @@
cursor: not-allowed;
}



.errorMessage {

background-color: var(--color-error-bg);

color: var(--color-error-text);

border: 1px solid var(--color-error-border);

padding: 10px 16px;

border-radius: 4px;

margin-top: 20px;

max-width: 500px;

white-space: pre-wrap;

}



.controlsContainer {

display: flex;

flex-direction: column;

gap: 16px;

margin-top: 20px;

padding-top: 20px;

border-top: 1px solid var(--color-border-primary);

width: 100%;

max-width: 500px;

align-items: center;

}



.videoControls {

display: flex;

gap: 10px;

align-items: center;

justify-content: center;

width: 100%;

}



.videoSourceSelect {

padding: 12px 16px;

background-color: var(--color-surface-primary);

border: 1px solid var(--color-border-secondary);

color: var(--color-text-primary);

border-radius: 24px;

font-size: 1rem;

cursor: pointer;

transition: border-color 0.15s ease;

}

.videoSourceSelect:hover {

border-color: var(--brand-gray-50);

}

.videoSourceSelect:disabled {

opacity: 0.5;

cursor: not-allowed;

background-color: var(--color-surface-tertiary);

}



@keyframes pulse {

0% {

box-shadow: 0 0 0 0 rgba(52, 168, 83, 0.7);

}

70% {

box-shadow: 0 0 0 10px rgba(52, 168, 83, 0);

}

100% {

box-shadow: 0 0 0 0 rgba(52, 168, 83, 0);

}

}
Loading