mirror of
https://github.com/lqtmcstudio/QZMusic_PC.git
synced 2026-08-18 15:33:27 +08:00
- 将AMLL Clone到本以地进行修复和优化(emm虽然这很不优雅但是暂时无时间做子模块和Fork) - 修复在当前播放歌词行不可见的视口Seek会出现滚动偏移的问题
34 lines
761 B
HTML
34 lines
761 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>AMLL React Wrapper Test</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<style>
|
|
:root {
|
|
font-family:
|
|
-apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
background: black;
|
|
}
|
|
|
|
.radix-themes {
|
|
--default-font-family: "";
|
|
--heading-font-family: "";
|
|
--code-font-family: "";
|
|
--strong-font-family: "";
|
|
--em-font-family: "";
|
|
--quote-font-family: "";
|
|
}
|
|
</style>
|
|
<script src="src/test-prebuilt.tsx" type="module" defer></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root"></div>
|
|
</body>
|
|
</html>
|