Skip to content
Snippets Groups Projects
Verified Commit b01ea2a7 authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Fixed #65: truncated play icon

parent 63542b41
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,7 @@ Changelog
- Fixed really small size on small screens
- Added masonry layout for artists, requests and radios (#68)
- We now have a favicon!
- Fixed truncated play icon (#65)
0.5.1 (2018-02-24)
......
......@@ -17,7 +17,7 @@
<table class="ui very basic fixed single line compact unstackable table">
<tbody>
<tr v-for="track in tracks">
<td>
<td class="play-cell">
<play-button class="basic icon" :track="track" :discrete="true"></play-button>
</td>
<td colspan="6">
......@@ -85,6 +85,9 @@ export default {
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped lang="scss">
table.fixed td.play-cell {
overflow: auto;
}
tr {
.favorite-icon:not(.favorited) {
display: none;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment