website/static/src/scss/_spotify.scss

28 lines
418 B
SCSS
Raw Normal View History

body.page-spotifyplaylistpage {
table {
2022-08-18 09:25:14 +01:00
font-size: 80%;
2022-08-27 22:31:19 +01:00
background-color: transparent;
2022-08-18 09:25:14 +01:00
2022-08-27 22:31:19 +01:00
td,
th {
2022-08-18 09:25:14 +01:00
vertical-align: middle;
2022-08-27 22:31:19 +01:00
@include dark-mode {
color: $dark-mode-text;
}
}
tbody tr:hover {
@include dark-mode {
background-color: $grey-darker !important;
}
2022-08-18 09:25:14 +01:00
}
img {
min-width: 55px;
width: 55px;
height: 55px;
}
}
}