From a63abca0382a4404fc6814bb0aa49c66c8b5b469 Mon Sep 17 00:00:00 2001
From: Eliot Berriot <contact@eliotberriot.com>
Date: Tue, 25 Feb 2020 16:14:21 +0100
Subject: [PATCH] Fixed small play button glitch on playlists

---
 front/src/components/playlists/Widget.vue | 1 -
 front/src/style/_main.scss                | 2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/front/src/components/playlists/Widget.vue b/front/src/components/playlists/Widget.vue
index 22c607f03..594abe395 100644
--- a/front/src/components/playlists/Widget.vue
+++ b/front/src/components/playlists/Widget.vue
@@ -6,7 +6,6 @@
     <div v-if="isLoading" class="ui inverted active dimmer">
       <div class="ui loader"></div>
     </div>
-    <div class="ui hidden divider"></div>
     <div v-if="playlistsExist" class="ui cards app-cards">
       <playlist-card v-for="playlist in objects" :key="playlist.id" :playlist="playlist"></playlist-card>
     </div>
diff --git a/front/src/style/_main.scss b/front/src/style/_main.scss
index 125293b99..435851ea9 100644
--- a/front/src/style/_main.scss
+++ b/front/src/style/_main.scss
@@ -504,7 +504,7 @@ input + .help {
         position: relative;
         margin-bottom: -1px;
         .button {
-          position: absolute;
+          position: absolute !important;
           bottom: 0.5em;
           right: 0.5em;
         }
-- 
GitLab