+
@@ -56,18 +56,19 @@ const menus = store.state.menus;
.layout-main {
@apply bg-black rounded-lg text-white shadow-xl flex-col relative;
- height: 900px;
- width: 1500px;
+ height: 100%;
+ width: 100%;
overflow: hidden;
- min-width: 1500px;
.menu {
width: 90px;
}
.main {
@apply pt-6 pr-6 flex-1 box-border;
+ height: 100vh;
&-content {
@apply rounded-2xl;
- height: 834px;
+ height: calc(100vh - 60px);
+ margin-bottom: 90px;
}
&-page {
margin: 20px 0;
diff --git a/src/views/list/index.vue b/src/views/list/index.vue
index 5fc120b..74d585f 100644
--- a/src/views/list/index.vue
+++ b/src/views/list/index.vue
@@ -152,7 +152,7 @@ const handlePlay = (item: any) => {