-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Изменения * Изменено использование вкладок (теперь переключение нажатием на вкладку, а не на надпись) * Исправлено форматирование стипендий, из-за которого возникало некорректное отображение суммы * Изменен класс IrdomSection для корректного отображения суммы в "прямом" калькуляторе (чтобы сумма не уезжала вниз)
- Loading branch information
Showing
5 changed files
with
127 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
{ | ||
"folders": [ | ||
{ | ||
"path": "." | ||
} | ||
], | ||
"extensions": { | ||
"recommendations": [ | ||
"Vue.volar", | ||
"dbaeumer.vscode-eslint", | ||
"esbenp.prettier-vscode", | ||
"formulahendry.auto-close-tag", | ||
"formulahendry.auto-rename-tag", | ||
"steoates.autoimport", | ||
"vunguyentuan.vscode-css-variables", | ||
"mohd-akram.vscode-html-format", | ||
], | ||
}, | ||
"tasks": { | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "Configure", | ||
"type": "shell", | ||
"command": "npm install", | ||
}, | ||
{ | ||
"label": "Run local", | ||
"type": "shell", | ||
"command": "npm run dev", | ||
}, | ||
{ | ||
"label": "Build", | ||
"type": "shell", | ||
"command": "npm run build", | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true, | ||
}, | ||
}, | ||
{ | ||
"label": "Test", | ||
"type": "shell", | ||
"command": "npm run test", | ||
"group": { | ||
"kind": "test", | ||
"isDefault": true, | ||
}, | ||
}, | ||
], | ||
}, | ||
"launch": { | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Launch dev", | ||
"request": "launch", | ||
"runtimeArgs": ["dev"], | ||
"runtimeExecutable": "pnpm", | ||
"skipFiles": ["<node_internals>/**"], | ||
"type": "node", | ||
"serverReadyAction": { | ||
"pattern": "Local: http://localhost:([0-9]+)/", | ||
"uriFormat": "http://localhost:%s", | ||
"action": "openExternally", | ||
}, | ||
}, | ||
], | ||
}, | ||
"settings": { | ||
"typescript.tsdk": "node_modules/typescript/lib", | ||
"css.validate": false, | ||
"git.openRepositoryInParentFolders": "always", | ||
"[vue]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ defineProps<{ | |
font-size: 20px; | ||
} | ||
.section:not(:last-child) { | ||
.section { | ||
margin-bottom: 35px; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters