feat: fix some style issue
This commit is contained in:
-62
@@ -1,62 +0,0 @@
|
|||||||
# OS artifacts
|
|
||||||
.DS_Store
|
|
||||||
Thumbs.db
|
|
||||||
|
|
||||||
# IDE / editor folders
|
|
||||||
.idea/
|
|
||||||
.vscode/
|
|
||||||
|
|
||||||
# Python build artifacts
|
|
||||||
__pycache__/
|
|
||||||
*.py[cod]
|
|
||||||
*.pyo
|
|
||||||
*.pyd
|
|
||||||
*.so
|
|
||||||
*.egg
|
|
||||||
*.egg-info/
|
|
||||||
.Python
|
|
||||||
build/
|
|
||||||
dist/
|
|
||||||
|
|
||||||
# Django / local data
|
|
||||||
*.sqlite3
|
|
||||||
media/
|
|
||||||
staticfiles/
|
|
||||||
*.log
|
|
||||||
*/migrations/*.py
|
|
||||||
!*/migrations/__init__.py
|
|
||||||
|
|
||||||
# Virtual environments
|
|
||||||
env/
|
|
||||||
venv/
|
|
||||||
.venv/
|
|
||||||
src/backend/venv/
|
|
||||||
|
|
||||||
# Environment / secret files
|
|
||||||
*.env
|
|
||||||
.env.*
|
|
||||||
src/backend/item_manager/secure.json
|
|
||||||
|
|
||||||
# Node / frontend artifacts
|
|
||||||
node_modules/
|
|
||||||
src/fronted/node_modules/
|
|
||||||
npm-debug.log*
|
|
||||||
yarn-debug.log*
|
|
||||||
yarn-error.log*
|
|
||||||
pnpm-debug.log*
|
|
||||||
.pnpm-store/
|
|
||||||
dist/
|
|
||||||
src/fronted/dist/
|
|
||||||
|
|
||||||
# Coverage / test reports
|
|
||||||
.coverage
|
|
||||||
coverage.xml
|
|
||||||
htmlcov/
|
|
||||||
|
|
||||||
# Local tooling
|
|
||||||
.pytest_cache/
|
|
||||||
.mypy_cache/
|
|
||||||
.ruff_cache/
|
|
||||||
.sass-cache/
|
|
||||||
|
|
||||||
.gitignore
|
|
||||||
Generated
-8298
File diff suppressed because it is too large
Load Diff
@@ -652,7 +652,6 @@ export default {
|
|||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.evaluation-container {
|
.evaluation-container {
|
||||||
max-width: 1200px;
|
|
||||||
margin: 20px auto;
|
margin: 20px auto;
|
||||||
padding: 0 20px;
|
padding: 0 20px;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<AppHeader />
|
<AppHeader />
|
||||||
<div>
|
<div class="finance-dashboard">
|
||||||
<el-card>
|
<el-card>
|
||||||
<template #header>
|
<template #header>
|
||||||
<div class="card-header">
|
<div class="card-header">
|
||||||
@@ -306,6 +306,10 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
.finance-dashboard {
|
||||||
|
margin: 20px auto;
|
||||||
|
}
|
||||||
|
|
||||||
.card-header {
|
.card-header {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
|||||||
Reference in New Issue
Block a user