@wendongfly/myhi 1.0.4 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.html +4 -3
- package/dist/index.js +22 -25
- package/package.json +1 -1
package/dist/index.html
CHANGED
|
@@ -396,14 +396,15 @@
|
|
|
396
396
|
|
|
397
397
|
/* ── 盘符选择栏 ── */
|
|
398
398
|
#drive-bar {
|
|
399
|
-
display: flex; gap: 0.
|
|
399
|
+
display: flex; gap: 0.5rem; padding: 0.6rem 0; border-bottom: 1px solid var(--border);
|
|
400
400
|
overflow-x: auto; scrollbar-width: none;
|
|
401
401
|
}
|
|
402
402
|
#drive-bar::-webkit-scrollbar { display: none; }
|
|
403
403
|
.drive-btn {
|
|
404
|
-
padding: 0.
|
|
405
|
-
background: var(--bg); border:
|
|
404
|
+
padding: 0.5rem 1rem; border-radius: 8px; font-size: 1rem; font-weight: 600;
|
|
405
|
+
background: var(--bg); border: 1.5px solid var(--border); color: var(--text);
|
|
406
406
|
cursor: pointer; white-space: nowrap; flex-shrink: 0;
|
|
407
|
+
min-width: 3rem; text-align: center;
|
|
407
408
|
}
|
|
408
409
|
.drive-btn:active, .drive-btn.active { border-color: var(--accent); color: var(--accent); background: rgba(124,58,237,0.12); }
|
|
409
410
|
</style>
|