Skip to content

Commit

Permalink
Update group.ts (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
giuliandenicola1 committed Mar 4, 2022
1 parent 23ca760 commit aa26c6a
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions src/group.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,24 +60,29 @@ class Group extends LitElement {
}
.group .wrap.active {
border: thin solid var(--sonos-int-accent-color);
}
.group .wrap.active .speakers {
font-weight: bold;
}
.group:first-child .wrap {
margin-top: 0;
}
.speakers {
list-style: none;
overflow: hidden;
margin: 0;
padding: 0;
}
.speakers li {
display: block;
font-size: 0.8rem;
margin: 0.25rem 0 0 0;
font-size: 1rem;
color: var(--sonos-int-color);
display: list-item;
list-style-type: "+ ";
float: left;
margin-left: 1rem;
}
.speakers li:first-child {
margin: 0;
display: block;
margin-left: 0;
}
.group .play {
display: flex;
Expand All @@ -88,7 +93,7 @@ class Group extends LitElement {
}
.group .play .content .currentTrack {
display: block;
font-size: 0.5rem;
font-size: 0.8rem;
}
.group .play .player {
width: 0.55rem;
Expand Down

0 comments on commit aa26c6a

Please sign in to comment.