diff options
Diffstat (limited to 'frontend/src/components/VNInterface.tsx')
| -rw-r--r-- | frontend/src/components/VNInterface.tsx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/frontend/src/components/VNInterface.tsx b/frontend/src/components/VNInterface.tsx index 051c210..48b150a 100644 --- a/frontend/src/components/VNInterface.tsx +++ b/frontend/src/components/VNInterface.tsx @@ -110,20 +110,20 @@ export function VNInterface({ onLogout }: VNInterfaceProps) { <span className="info-value">Daemons</span> </Link> </div> - <div className="status-item"> - <Link to="/contracts" style={{ color: '#66ccff', textDecoration: 'none', display: 'flex', alignItems: 'center', gap: '4px' }}> - <span className="info-label">View:</span> - <span className="info-value">Contracts</span> - </Link> - </div> {documentUiEnabled && ( <div className="status-item"> - <Link to="/directives" style={{ color: '#ff66cc', textDecoration: 'none', display: 'flex', alignItems: 'center', gap: '4px' }}> - <span className="info-label">Docs:</span> + <Link to="/directives" style={{ color: '#ff66cc', textDecoration: 'none', display: 'flex', alignItems: 'center', gap: '4px', fontWeight: 600 }}> + <span className="info-label">View:</span> <span className="info-value">Directives</span> </Link> </div> )} + <div className="status-item"> + <Link to="/contracts" style={{ color: documentUiEnabled ? '#8899bb' : '#66ccff', textDecoration: 'none', display: 'flex', alignItems: 'center', gap: '4px', fontSize: documentUiEnabled ? '0.85em' : undefined }}> + <span className="info-label">{documentUiEnabled ? 'Legacy:' : 'View:'}</span> + <span className="info-value">Contracts</span> + </Link> + </div> </div> </div> </div> |
