mirror of
https://github.com/rookiestar28/ComfyUI-OpenClaw.git
synced 2026-08-14 08:52:45 +00:00
29 lines
548 B
CSS
29 lines
548 B
CSS
/* R6: Error Boundary Styles */
|
|
|
|
.openclaw-error-boundary,
|
|
.moltbot-error-boundary {
|
|
padding: 1rem;
|
|
border: 1px solid #ff4444;
|
|
background: #2a0000;
|
|
color: #ffcccc;
|
|
border-radius: 4px;
|
|
margin: 8px;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
.openclaw-error-boundary h3,
|
|
.moltbot-error-boundary h3 {
|
|
margin-top: 0;
|
|
color: #ff8888;
|
|
}
|
|
|
|
.openclaw-error-boundary code,
|
|
.moltbot-error-boundary code {
|
|
display: block;
|
|
background: #000;
|
|
padding: 8px;
|
|
margin-top: 8px;
|
|
overflow-x: auto;
|
|
font-family: monospace;
|
|
}
|