minor refactors and edits

This commit is contained in:
geoffrey45
2022-03-14 08:46:42 +03:00
parent 658aba45ff
commit 95a6ca03a8
5 changed files with 17 additions and 18 deletions
+1 -1
View File
@@ -96,7 +96,7 @@ export default {
.play {
height: 100%;
width: 5em;
background-color: rgb(5, 74, 131);
background-color: $blue;
padding-left: $small;
margin-right: $small;
+10 -10
View File
@@ -88,6 +88,16 @@ function loadAlbum(title, albumartist) {
height: 100%;
overflow-y: auto;
.current {
color: $red;
}
.current:hover {
* {
color: rgb(255, 255, 255);
}
}
.thead {
display: grid;
grid-template-columns: 1.5rem 1.5fr 1fr 1.5fr 0.25fr;
@@ -127,16 +137,6 @@ function loadAlbum(title, albumartist) {
&::-webkit-scrollbar {
display: none;
}
.current * {
color: $highlight-blue;
}
.current:hover {
* {
color: rgb(255, 255, 255);
}
}
}
}
</style>