Add dark mode for spotify table

This commit is contained in:
Jake Howard 2022-08-27 22:31:19 +01:00
parent ee1eaf6593
commit e5c8c6d7eb
Signed by: jake
GPG Key ID: 57AFB45680EDD477
1 changed files with 13 additions and 1 deletions

View File

@ -1,9 +1,21 @@
body.page-spotifyplaylistpage {
table {
font-size: 80%;
background-color: transparent;
td {
td,
th {
vertical-align: middle;
@include dark-mode {
color: $dark-mode-text;
}
}
tbody tr:hover {
@include dark-mode {
background-color: $grey-darker !important;
}
}
img {