diff --git a/README.md b/README.md
index 6357097e..0c260ddb 100644
--- a/README.md
+++ b/README.md
@@ -2,6 +2,8 @@
![release](https://github.com/Linkontoask/radishes/workflows/release/badge.svg)
+
+
`Radishes`是这个项目的名称,它是由`萝卜`翻译而来。可以在这里试听和下载“灰色”歌曲哟
界面表现和功能参考 windows 网易云音乐界面和 ios 的网易云音乐,会对一些功能进行移动端支持。希望能找到合适的基于 vue3 的移动端打包工具(非套壳)。
diff --git a/snapshots/home.jpg b/snapshots/home.jpg
new file mode 100644
index 00000000..7ab8d0a8
Binary files /dev/null and b/snapshots/home.jpg differ
diff --git a/src/components-business/secondary-bar/index.tsx b/src/components-business/secondary-bar/index.tsx
index c88c0d24..49551ceb 100644
--- a/src/components-business/secondary-bar/index.tsx
+++ b/src/components-business/secondary-bar/index.tsx
@@ -45,7 +45,7 @@ export const SecondaryBar = defineComponent({
}
return () => (
-
+
{nav.value?.map(link => (
ul {
display: grid;
- grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
+ // grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
+ grid-template-columns: 1fr 1fr 1fr 1fr;
grid-gap: 20px;
height: 100%;
}
&-container {
- display: flex;
- flex-direction: column;
- min-height: 220px;
+ position: relative;
+ // min-height: 220px;
cursor: pointer;
user-select: none;
.song-pic {
position: relative;
- flex: 1;
+ width: 0;
height: 0;
+ padding-left: 100%;
+ padding-bottom: 100%;
+ .daily-img,
+ .bg-img {
+ position: absolute;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ }
&-count {
position: absolute;
top: 2px;
diff --git a/src/pages/auth/component/sidebar-auth/index.tsx b/src/pages/auth/component/sidebar-auth/index.tsx
index 4dcfd87e..1657b800 100644
--- a/src/pages/auth/component/sidebar-auth/index.tsx
+++ b/src/pages/auth/component/sidebar-auth/index.tsx
@@ -53,7 +53,7 @@ export const SidebarAuth = defineComponent({
const text = isLogin.value ? profile.value.nickname : '未登录'
const head = isLogin.value ? profile.value.avatarUrl : DEFAULT_AVATAR
return (
-