Spaces:
Running
Running
github-actions[bot] commited on
Commit ·
c9968ac
1
Parent(s): 3e0aaa1
Sync from GitHub Viciy2023/Qwen2API-A@40d33c712b7c3867f26b04b57a141028f560f788
Browse files- public/index.html +0 -1
- public/src/App.vue +11 -11
public/index.html
CHANGED
|
@@ -2,7 +2,6 @@
|
|
| 2 |
<html lang="en">
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8" />
|
| 5 |
-
<link rel="icon" type="image/svg+xml" href="/favicon.png" />
|
| 6 |
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
| 7 |
<title>Qwen2 API Dashboard</title>
|
| 8 |
</head>
|
|
|
|
| 2 |
<html lang="en">
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8" />
|
|
|
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
| 6 |
<title>Qwen2 API Dashboard</title>
|
| 7 |
</head>
|
public/src/App.vue
CHANGED
|
@@ -1,7 +1,5 @@
|
|
| 1 |
<template>
|
| 2 |
-
<
|
| 3 |
-
<source src="./assets/background.mp4" type="video/mp4">
|
| 4 |
-
</video>
|
| 5 |
|
| 6 |
<router-view></router-view>
|
| 7 |
|
|
@@ -21,13 +19,15 @@ html {
|
|
| 21 |
position: relative;
|
| 22 |
}
|
| 23 |
|
| 24 |
-
#
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
|
|
|
|
|
|
| 32 |
}
|
| 33 |
</style>
|
|
|
|
| 1 |
<template>
|
| 2 |
+
<div id="app-background"></div>
|
|
|
|
|
|
|
| 3 |
|
| 4 |
<router-view></router-view>
|
| 5 |
|
|
|
|
| 19 |
position: relative;
|
| 20 |
}
|
| 21 |
|
| 22 |
+
#app-background {
|
| 23 |
+
position: fixed;
|
| 24 |
+
top: 0;
|
| 25 |
+
left: 0;
|
| 26 |
+
width: 100%;
|
| 27 |
+
height: 100%;
|
| 28 |
+
z-index: -1;
|
| 29 |
+
background:
|
| 30 |
+
radial-gradient(circle at top, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.2) 35%),
|
| 31 |
+
linear-gradient(135deg, #dbeafe 0%, #f8fafc 45%, #fde68a 100%);
|
| 32 |
}
|
| 33 |
</style>
|