Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: 修复"网"字显示异常 #114

Merged
merged 1 commit into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"build": "run-p \"build-only {@}\" --",
"uploadCDN": "node uploadToQiniu.js",
"preview": "vite preview",
"test:unit": "vitest",
Expand Down Expand Up @@ -51,7 +51,7 @@
"npm-run-all2": "^6.2.0",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.7",
"typescript": "~5.4.0",
"typescript": "~5.4.5",
"vite": "^5.2.11",
"vitest": "^1.6.0",
"vue-tsc": "^1.8.27"
Expand Down
6 changes: 3 additions & 3 deletions src/pages/Login/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
<el-divider direction="vertical" ></el-divider>
</div>
<div class="flex justify-start items-center w-1/2">
<div class="bg-base-200 dark:bg-customGray
shadow-lg h-auto p-20 rounded-3xl w-10/12 items-center justify-center
<div class="bg-base-200 dark:bg-customGray
shadow-lg h-auto p-20 rounded-3xl w-10/12 items-center justify-center
hover:shadow-2xl hover:-translate-y-2 transform duration-700">
<div class="flex justify-center items-center mt-15">
<span class="text-4xl font-medium my-10">精弘⽹络问卷系统</span>
<span class="text-4xl font-medium my-10">精弘网络问卷系统</span>
</div>
<div class="flex justify-center gap-30 flex-col h-300 p-40">
<div class="w-full">
Expand Down
Loading