further refactor paddings and colors

This commit is contained in:
geoffrey45
2022-02-12 11:32:50 +03:00
parent 88e1d42ab5
commit 6d6d2831c0
14 changed files with 26 additions and 24 deletions
+2 -1
View File
@@ -71,8 +71,9 @@ export default {
.al-view {
height: calc(100% - 1rem);
overflow: auto;
margin-top: $small;
margin: $smaller $small;
scrollbar-width: none;
.songs {
padding: $small;
background-color: $card-dark;
+2 -3
View File
@@ -1,5 +1,5 @@
<template>
<div id="f-view-parent" class="rounded">
<div id="f-view-parent" class="card-dark">
<div class="fixed">
<Header :path="path" :first_song="songs[0]" @search="updateQueryString" />
</div>
@@ -128,10 +128,9 @@ export default {
<style lang="scss">
#f-view-parent {
position: relative;
background-color: $card-dark;
padding: 4rem $small 0 $small;
overflow: hidden;
margin: $smaller;
margin: 0;
}
#f-view-parent .fixed {
+4 -3
View File
@@ -3,7 +3,7 @@
<Header :playlist_info="playlist_info" />
<div class="separator no-border"></div>
<div class="songlist rounded border">
<div class="songlist rounded">
<SongList :songs="songs" />
</div>
<div class="separator no-border"></div>
@@ -40,9 +40,10 @@ export default {
<style lang="scss">
.playlist-view {
height: calc(100% - $small);
margin: $smaller $smaller 0 $smaller;
height: calc(100% - 0rem);
margin: 0 $small;
overflow: auto;
padding-bottom: $small;
&::-webkit-scrollbar {
display: none;