- wtm-frontend → wtm-frontend-vue 이름 변경 - wtm-frontend-react 추가 (React 18 + PrimeReact + Zustand) - 동일한 모듈 구조 및 API 연동 (Vue 버전과 기능 동일) - Vue:5173 / React:5174 포트 분리 - 개발자 가이드에 React 프론트엔드 안내 추가 - .gitignore: Claude/OMC, 문서 생성 스크립트, package-lock 제외 - 불필요 파일 git 추적 제거 (.omc, generate_*.py, regenerate_*.py) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
37 줄
642 B
SCSS
37 줄
642 B
SCSS
@use '@/assets/styles/variables' as *;
|
|
|
|
.crud-table {
|
|
&__toolbar {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
gap: $space-sm;
|
|
margin-bottom: $space-md;
|
|
}
|
|
|
|
&__toolbar-left,
|
|
&__toolbar-right {
|
|
display: flex;
|
|
gap: $space-sm;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
&__empty {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: $space-sm;
|
|
padding: $space-2xl;
|
|
color: $color-text-muted;
|
|
}
|
|
|
|
@media (max-width: $bp-mobile) {
|
|
&__toolbar {
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
}
|
|
}
|
|
}
|