0
0
Fork 0

Remove card class from the login view

This commit is contained in:
Tyler-A 2020-07-06 23:49:02 -06:00
parent 0d2526812d
commit e4a9c3bb42

View file

@ -26,7 +26,7 @@
<body>
<div id="app" v-cloak>
<div id="login" v-if="!is_authed">
<div class="card center">
<div class="center">
<a :href="spotify_auth_url">
<button id="spotify-login">Login With Spotify</button>
</a>
@ -72,11 +72,16 @@
</div>
<div class="body" v-if="data.artists.length > 0">
<artist
v-for="top_artist in data.artists"
:artist="top_artist"
:key="top_artist.id"
v-for="top_artist in data.artists"
:artist="top_artist"
:key="top_artist.id"
></artist>
</div>
<!-- Modals Needed -->
<div v-if="show.modal.track" class="modal track-modal"></div>
<div v-if="show.modal.popularity" class="modal info-modal"></div>
<div v-if="show.modal.playlist_export" class="modal playlist-export-modal"></div>
</div>
</div>
</body>