## React SPA Dashboard - React 19 + Vite 7 + Tailwind CSS 4 + Recharts 2 SPA 구축 - Dashboard (배치현황/시스템메트릭/캐시/처리량) + JobMonitor (이력조회/Step상세) - i18n 다국어(ko/en) 시스템, Light/Dark 테마 CSS 토큰 전환 - frontend-maven-plugin 1.15.1 (mvn package 시 자동 빌드) - WebViewController SPA forward + context-path /signal-batch - 레거시 HTML 48개 파일 전체 삭제 ## 안전 배포 - VesselBatchScheduler @PreDestroy: 신규 Job 차단 + 실행 중 Job 완료 대기 - server.shutdown=graceful, timeout-per-shutdown-phase=3m - deploy.yml: 활성 Job 3초 연속 확인 후 stop → 교체 → start - signal-batch.service TimeoutStopSec 60→180 - scripts/deploy.sh: 수동 배포용 안전 스크립트 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
76 lines
1.5 KiB
CSS
76 lines
1.5 KiB
CSS
/* Navbar Component Styles */
|
|
|
|
@layer components {
|
|
.sb-navbar {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 0.75rem 1.5rem;
|
|
background-color: var(--sb-surface);
|
|
border-bottom: 1px solid var(--sb-border);
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 50;
|
|
}
|
|
|
|
.sb-navbar-brand {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
font-weight: 700;
|
|
font-size: 1.125rem;
|
|
color: var(--sb-primary);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.sb-navbar-nav {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.25rem;
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.sb-nav-link {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0.5rem 0.75rem;
|
|
border-radius: var(--sb-radius);
|
|
font-size: 0.875rem;
|
|
font-weight: 500;
|
|
color: var(--sb-text-muted);
|
|
text-decoration: none;
|
|
transition: all 0.15s ease;
|
|
}
|
|
|
|
.sb-nav-link:hover {
|
|
color: var(--sb-text);
|
|
background-color: var(--sb-surface-hover);
|
|
}
|
|
|
|
.sb-nav-link-active {
|
|
color: var(--sb-primary);
|
|
background-color: var(--sb-surface-hover);
|
|
}
|
|
|
|
.sb-theme-toggle {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 2rem;
|
|
height: 2rem;
|
|
border-radius: var(--sb-radius);
|
|
border: 1px solid var(--sb-border);
|
|
background-color: var(--sb-surface);
|
|
color: var(--sb-text-muted);
|
|
cursor: pointer;
|
|
transition: all 0.15s ease;
|
|
}
|
|
|
|
.sb-theme-toggle:hover {
|
|
color: var(--sb-text);
|
|
border-color: var(--sb-text-muted);
|
|
}
|
|
}
|