Fix code related to changing from temporary playlists to permanent ones. Implement new centralized Koto Paths for defining our variables and revdns name for consistency. Updated Album View to leverage KotoCoverArtButton component. Started refactoring our theming to support multiple variants. It isn't where I want it yet but we'll get there.
34 lines
489 B
SCSS
34 lines
489 B
SCSS
@import 'vars';
|
|
|
|
.player-bar {
|
|
background-image: none;
|
|
padding: $halvedpadding;
|
|
|
|
.playerbar-info { // Central info section
|
|
& > box { // Info labels
|
|
margin-left: 2ex;
|
|
|
|
& > label {
|
|
margin-top: 6px;
|
|
margin-bottom: 6px;
|
|
|
|
&:nth-child(1) { // Title
|
|
font-size: x-large;
|
|
font-weight: bold;
|
|
}
|
|
|
|
&:not(:nth-child(1)) { // Album and Artist
|
|
font-size: large;
|
|
}
|
|
|
|
&:nth-child(2) { // Album
|
|
|
|
}
|
|
|
|
&:nth-child(3) { // Artist
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|