diff --git a/CHANGELOG b/CHANGELOG
index 42b149c37eb4f60685c50038ea9faab23992efb2..1f2dd97b7b08365137ac9471c3a095775dc195e5 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -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)
diff --git a/front/src/components/audio/album/Card.vue b/front/src/components/audio/album/Card.vue
index 45e50f8973c6f7571f85fb3a6b88d58be997cf8b..ea42f06a8392871cca63b6d5fbe62d5f26d75455 100644
--- a/front/src/components/audio/album/Card.vue
+++ b/front/src/components/audio/album/Card.vue
@@ -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;