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 ...@@ -9,6 +9,7 @@ Changelog
- Fixed really small size on small screens - Fixed really small size on small screens
- Added masonry layout for artists, requests and radios (#68) - Added masonry layout for artists, requests and radios (#68)
- We now have a favicon! - We now have a favicon!
- Fixed truncated play icon (#65)
0.5.1 (2018-02-24) 0.5.1 (2018-02-24)
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
<table class="ui very basic fixed single line compact unstackable table"> <table class="ui very basic fixed single line compact unstackable table">
<tbody> <tbody>
<tr v-for="track in tracks"> <tr v-for="track in tracks">
<td> <td class="play-cell">
<play-button class="basic icon" :track="track" :discrete="true"></play-button> <play-button class="basic icon" :track="track" :discrete="true"></play-button>
</td> </td>
<td colspan="6"> <td colspan="6">
...@@ -85,6 +85,9 @@ export default { ...@@ -85,6 +85,9 @@ export default {
<!-- Add "scoped" attribute to limit CSS to this component only --> <!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped lang="scss"> <style scoped lang="scss">
table.fixed td.play-cell {
overflow: auto;
}
tr { tr {
.favorite-icon:not(.favorited) { .favorite-icon:not(.favorited) {
display: none; 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