瀏覽代碼

fix(Station page): station queue sidebar now contained

Signed-off-by: Jonathan <theflametrooper@gmail.com>
Jonathan 4 年之前
父節點
當前提交
45d465a9c7

+ 1 - 0
frontend/src/pages/Station/components/Sidebar/MyPlaylists.vue

@@ -153,6 +153,7 @@ export default {
 	margin-bottom: 20px;
 	padding: 10px;
 	border-radius: 0 0 5px 5px;
+	max-height: 100%;
 
 	.nothing-here {
 		margin-bottom: 10px;

+ 1 - 1
frontend/src/pages/Station/components/Sidebar/Queue/index.vue

@@ -138,7 +138,7 @@ export default {
 		border-radius: 0 0 5px 5px;
 		width: 100%;
 		overflow: auto;
-		height: inherit;
+		max-height: 100%;
 		padding: 10px;
 
 		.nothing-here {

+ 1 - 0
frontend/src/pages/Station/components/Sidebar/Users.vue

@@ -70,6 +70,7 @@ export default {
 	margin-bottom: 20px;
 	padding: 10px;
 	border-radius: 0 0 5px 5px;
+	max-height: 100%;
 
 	li {
 		margin-top: 10px;

+ 5 - 0
frontend/src/pages/Station/components/Sidebar/index.vue

@@ -92,6 +92,11 @@ export default {
 	width: 100%;
 	top: 0;
 	position: absolute;
+	height: calc(100% - 36px);
+
+	.tab {
+		height: 100%;
+	}
 }
 
 #tab-selection {