mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 20:43:04 +00:00
make playlists list page scrollable
This commit is contained in:
committed by
Mungai Njoroge
parent
446536f2d8
commit
264406aef4
@@ -41,8 +41,6 @@ $g-border: solid 1px $gray5;
|
|||||||
grid-area: l-sidebar;
|
grid-area: l-sidebar;
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-rows: 1fr max-content;
|
grid-template-rows: 1fr max-content;
|
||||||
// border-top: none !important;
|
|
||||||
// border-bottom: none !important;
|
|
||||||
border-right: $g-border;
|
border-right: $g-border;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -51,6 +49,11 @@ $g-border: solid 1px $gray5;
|
|||||||
border-top: $g-border;
|
border-top: $g-border;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.content-page {
|
||||||
|
margin-right: -$medium;
|
||||||
|
padding-right: calc(1rem - $small + 2px);
|
||||||
|
}
|
||||||
|
|
||||||
// ====== MODIFIERS =======
|
// ====== MODIFIERS =======
|
||||||
|
|
||||||
#app-grid.extendWidth {
|
#app-grid.extendWidth {
|
||||||
|
|||||||
@@ -6,6 +6,11 @@
|
|||||||
padding-right: 1rem;
|
padding-right: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.content-page {
|
||||||
|
margin-right: calc(0rem - ($medium + 4px));
|
||||||
|
padding-right: calc(1rem - 3px) !important;
|
||||||
|
}
|
||||||
|
|
||||||
.header-list-layout {
|
.header-list-layout {
|
||||||
margin-right: calc(0rem - ($medium + 4px)) !important;
|
margin-right: calc(0rem - ($medium + 4px)) !important;
|
||||||
|
|
||||||
|
|||||||
@@ -149,7 +149,7 @@ const settings = useSettingsStore();
|
|||||||
}
|
}
|
||||||
|
|
||||||
.info {
|
.info {
|
||||||
max-width: 30rem;
|
width: 30rem;
|
||||||
|
|
||||||
.with-title {
|
.with-title {
|
||||||
display: grid;
|
display: grid;
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div id="p-view" class="noscroll">
|
<div id="p-view" class="content-page">
|
||||||
<div class="grid">
|
<div class="grid">
|
||||||
<PlaylistCard
|
<PlaylistCard
|
||||||
v-for="p in pStore.playlists"
|
v-for="p in pStore.playlists"
|
||||||
@@ -22,7 +22,9 @@ const pStore = usePStore();
|
|||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
#p-view {
|
#p-view {
|
||||||
scrollbar-color: $gray2 transparent;
|
scrollbar-color: $gray2 transparent;
|
||||||
margin: 1rem 0;
|
padding-bottom: 4rem;
|
||||||
|
height: 100%;
|
||||||
|
overflow: auto;
|
||||||
|
|
||||||
.grid {
|
.grid {
|
||||||
grid-template-columns: repeat(auto-fill, minmax(9.25rem, 1fr));
|
grid-template-columns: repeat(auto-fill, minmax(9.25rem, 1fr));
|
||||||
|
|||||||
Reference in New Issue
Block a user